peddler 1.5.0 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9fe93b1e3df4edf8e6c43dff0c345c54c810dfc2
4
- data.tar.gz: 7357b893235c06ca4770e693229c2bcaf3cdfb1a
3
+ metadata.gz: 6930c5791ac57b42110c8f753ec49b9e1916ebf1
4
+ data.tar.gz: 79d8ed7d23625bc790f14f1df4f3cf02a5404ff9
5
5
  SHA512:
6
- metadata.gz: 1a603aeeadcfc890cb58bce2d9930811a16e464c9133e900fc546ce446ee8ffd1471abab5b2c42591fa987e6fe8e5f2b7212386ac4b32d062d25330ea27b9293
7
- data.tar.gz: a4e569716f65d6269cf39e1822b44313ec543cbee0e25f8e4fb9f42eb19a1d0774ec92f688db62509ae229bb59c12a96185862ea15b304da3c841467d11261fe
6
+ metadata.gz: ef37d5d4d265fe2e73d4ea6b077f59950f706d14e2fe20b0a7ebf8d363265681c9b0339449fe851484c332a3c614f86ddf8fbda833ecd7cc2b58f8b7d678ff1b
7
+ data.tar.gz: 030eb49815c4c35e0825a08e1059469195313f2acbaa248bf82d2e3010efafcc31d8c8ddd8b3499a63dff07bc041203ade90795d02faedc5d2bc3fd25cbd368f
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![Build Status](https://travis-ci.org/hakanensari/peddler.svg)](https://travis-ci.org/hakanensari/peddler)
4
4
  [![Code Climate](https://codeclimate.com/github/hakanensari/peddler/badges/gpa.svg)](https://codeclimate.com/github/hakanensari/peddler)
5
- [![Coverage Status](https://coveralls.io/repos/hakanensari/peddler/badge.svg?branch=master)](https://coveralls.io/r/hakanensari/peddler?branch=master)
5
+ [![Test Coverage](https://codeclimate.com/github/hakanensari/peddler/badges/coverage.svg)](https://codeclimate.com/github/hakanensari/peddler/coverage)
6
6
 
7
7
  **Peddler** is a Ruby interface to the [Amazon MWS API](https://developer.amazonservices.com/), a collection of web services that help Amazon sellers programmatically exchange data on their listings, orders, payments, reports, and more.
8
8
 
@@ -44,6 +44,8 @@ You can now instantiate a client.
44
44
  client = MWS.orders
45
45
  ```
46
46
 
47
+ The client will pick up credentials automatically from the environment.
48
+
47
49
  Alternatively, if you do not rely on environment variables, you can set some or all credentials when or after creating the client.
48
50
 
49
51
  ```ruby
@@ -63,8 +65,6 @@ If you are creating a [client for another seller](https://developer.amazonservic
63
65
  client = MWS.orders(
64
66
  primary_marketplace_id: "Seller's Marketplace ID",
65
67
  merchant_id: "Seller's Merchant or Seller ID",
66
- aws_access_key_id: "Your AWS Access Key ID",
67
- aws_secret_access_key: "Your AWS Secret Access Key",
68
68
  auth_token: "Seller's MWS Authorisation Token"
69
69
  )
70
70
  ```
@@ -77,7 +77,8 @@ Peddler wraps successful responses in a parser that handles both XML documents a
77
77
 
78
78
  ```ruby
79
79
  parser = client.get_service_status
80
- parser.parse # will return a Hash or CSV object
80
+ parser.parse # will return a Hash object
81
+ parser.dig('Status') # delegates to Hash#dig for convenience
81
82
  ```
82
83
 
83
84
  You can swap the default parser with a purpose-built abstraction.
@@ -90,7 +91,7 @@ For a sample implementation, see my [MWS Orders](https://github.com/hakanensari/
90
91
 
91
92
  ### Debugging
92
93
 
93
- To introspect requests, set the `EXCON_DEBUG` environment variable to a truthy value.
94
+ To introspect requests, set the `EXCON_DEBUG` environment variable to a truthy value when making requests.
94
95
 
95
96
  ### Errors
96
97
 
@@ -1,10 +1,13 @@
1
1
  module Peddler
2
2
  # @api private
3
3
  module Errors
4
- KNOWN = %w(
4
+ # Known codes
5
+ CODES = %w(
5
6
  AccessDenied
6
7
  InvalidMarketplace
7
8
  InvalidParameterValue
9
+ InvalidRequest
10
+ MalformedInput
8
11
  QuotaExceeded
9
12
  RequestThrottled
10
13
  ).freeze
@@ -19,7 +22,7 @@ module Peddler
19
22
  end
20
23
  end
21
24
 
22
- KNOWN.each do |name|
25
+ CODES.each do |name|
23
26
  const_set name, Class.new(Error)
24
27
  end
25
28
  end
@@ -1,10 +1,13 @@
1
1
  require 'delegate'
2
2
  require 'csv'
3
3
  require 'digest/md5'
4
+ require 'peddler/headers'
4
5
 
5
6
  module Peddler
6
7
  # @api private
7
8
  class FlatFileParser < SimpleDelegator
9
+ include Headers
10
+
8
11
  # http://stackoverflow.com/questions/8073920/importing-csv-quoting-error-is-driving-me-nuts
9
12
  OPTIONS = { col_sep: "\t", quote_char: "\x00", headers: true }.freeze
10
13
 
@@ -41,7 +44,7 @@ module Peddler
41
44
  def scrub_content
42
45
  content
43
46
  .force_encoding(encoding)
44
- .encode('UTF-8', undef: :replace, replace: '?')
47
+ .encode('UTF-8', invalid: :replace, undef: :replace, replace: '?')
45
48
  end
46
49
 
47
50
  def summary?
@@ -0,0 +1,26 @@
1
+ module Peddler
2
+ # Parses MWS-specific headers
3
+ module Headers
4
+ Quota = Struct.new(:max, :remaining, :resets_on)
5
+
6
+ def quota
7
+ Quota.new(
8
+ headers['x-mws-quota-max'].to_i,
9
+ headers['x-mws-quota-remaining'].to_i,
10
+ Time.parse(headers['x-mws-quota-resetsOn'])
11
+ )
12
+ end
13
+
14
+ def request_id
15
+ headers['x-mws-request-id']
16
+ end
17
+
18
+ def timestamp
19
+ Time.parse(headers['x-mws-timestamp'])
20
+ end
21
+
22
+ def response_context
23
+ headers['x-mws-response-context']
24
+ end
25
+ end
26
+ end
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Peddler
3
- VERSION = '1.5.0'.freeze
3
+ VERSION = '1.6.0'.freeze
4
4
  end
@@ -1,9 +1,17 @@
1
1
  require 'delegate'
2
+ require 'dig_rb'
3
+ require 'forwardable'
4
+ require 'peddler/headers'
2
5
  require 'multi_xml'
3
6
 
4
7
  module Peddler
5
8
  # @api private
6
9
  class XMLParser < SimpleDelegator
10
+ extend Forwardable
11
+ include Headers
12
+
13
+ def_delegator :parse, :dig
14
+
7
15
  def parse
8
16
  @data ||= find_data
9
17
  end
@@ -3,7 +3,7 @@ require 'peddler/xml_parser'
3
3
  module Peddler
4
4
  # @api private
5
5
  class XMLResponseParser < XMLParser
6
- MATCHER = /Message|Report|Result/
6
+ MATCHER = /^Message$|Report|Result/
7
7
  private_constant :MATCHER
8
8
 
9
9
  def next_token
@@ -1,11 +1,5 @@
1
1
  if RUBY_ENGINE == 'ruby'
2
2
  require 'simplecov'
3
- require 'coveralls'
4
-
5
- SimpleCov.formatters = [
6
- SimpleCov::Formatter::HTMLFormatter,
7
- Coveralls::SimpleCov::Formatter
8
- ]
9
3
 
10
4
  SimpleCov.start do
11
5
  add_filter '/test/'
@@ -0,0 +1,18 @@
1
+ require 'integration_helper'
2
+ require 'mws/products'
3
+
4
+ class TestMultibyteQueries < IntegrationTest
5
+ def setup
6
+ @api = 'Products'
7
+ super
8
+ end
9
+
10
+ def test_posts_multibyte_queries_properly
11
+ ret = clients.map do |client|
12
+ res = client.list_matching_products('félix guattari machinic eros')
13
+ res.body.force_encoding 'UTF-8' if defined? Ox # Ox workaround
14
+ res.parse
15
+ end
16
+ assert ret.map(&:to_s).join.include?('Félix')
17
+ end
18
+ end
@@ -0,0 +1,16 @@
1
+ require 'integration_helper'
2
+ require 'mws/products'
3
+
4
+ class TestMWSHeaders < IntegrationTest
5
+ def setup
6
+ @api = 'Products'
7
+ super
8
+ end
9
+
10
+ def test_parses_headers
11
+ clients.each do |client|
12
+ res = client.get_lowest_priced_offers_for_asin('1780935374', 'New')
13
+ refute_nil res.quota
14
+ end
15
+ end
16
+ end
@@ -9,7 +9,6 @@ class TestOrders < IntegrationTest
9
9
  created_after: Date.new(2015),
10
10
  max_results_per_page: 5
11
11
  )
12
- .parse
13
12
  .dig('Orders', 'Order')
14
13
  .map { |order| order['AmazonOrderId'] }
15
14
 
@@ -17,7 +16,6 @@ class TestOrders < IntegrationTest
17
16
 
18
17
  orders = client
19
18
  .get_order(*order_ids)
20
- .parse
21
19
  .dig('Orders', 'Order')
22
20
 
23
21
  assert_equal order_ids.count, orders.count
@@ -66,9 +66,7 @@ class TestProducts < IntegrationTest
66
66
  identifier: '123',
67
67
  is_amazon_fulfilled: false
68
68
  )
69
- assert res
70
- .parse
71
- .dig('FeesEstimateResultList', 'FeesEstimateResult', 'FeesEstimate')
69
+ assert res.dig('FeesEstimateResultList', 'FeesEstimateResult', 'FeesEstimate')
72
70
  end
73
71
  end
74
72
 
@@ -1,6 +1,5 @@
1
1
  require 'helper'
2
2
  require 'recorder'
3
- require 'dig_rb'
4
3
 
5
4
  %w(mws.yml mws.yml.example).each do |path|
6
5
  file = File.expand_path("../#{path}", __FILE__)
@@ -1,8 +1,6 @@
1
1
  require 'peddler/client'
2
2
  require 'securerandom'
3
3
 
4
- ::Peddler::VCRMatcher.ignore_seller!
5
-
6
4
  module Null
7
5
  class Client < ::Peddler::Client
8
6
  def configure_with_mock_data!
@@ -2,6 +2,9 @@ require 'peddler/vcr_matcher'
2
2
  require 'yaml'
3
3
  require 'vcr'
4
4
 
5
+ # So we can continue testing against old Content-MD5 header
6
+ ::Peddler::VCRMatcher.ignored_params << 'ContentMD5Value'
7
+
5
8
  VCR.configure do |c|
6
9
  c.hook_into :excon
7
10
  c.cassette_library_dir = 'test/vcr_cassettes'
@@ -15,7 +15,7 @@ class TestPeddlerErrorsError < MiniTest::Test
15
15
  end
16
16
 
17
17
  def test_defines_common_errors
18
- Peddler::Errors::KNOWN.each do |name|
18
+ Peddler::Errors::CODES.each do |name|
19
19
  assert ::Peddler::Errors.const_defined?(name)
20
20
  end
21
21
  end
@@ -0,0 +1,38 @@
1
+ require 'helper'
2
+ require 'peddler/headers'
3
+
4
+ class TestPeddlerHeaders < MiniTest::Test
5
+ include ::Peddler::Headers
6
+
7
+ attr_reader :headers
8
+
9
+ def setup
10
+ @headers = {
11
+ 'x-mws-quota-max' => '200.0',
12
+ 'x-mws-quota-remaining' => '200.0',
13
+ 'x-mws-quota-resetsOn' => '2017-01-30T00:03:00.000Z',
14
+ 'x-mws-request-id' => '123',
15
+ 'x-mws-timestamp' => '2017-01-29T23:55:25.356Z',
16
+ 'x-mws-response-context' => 'foo'
17
+ }
18
+ end
19
+
20
+ def test_quota
21
+ assert quota
22
+ assert_kind_of Integer, quota.max
23
+ assert_kind_of Integer, quota.remaining
24
+ assert_kind_of Time, quota.resets_on
25
+ end
26
+
27
+ def test_request_id
28
+ assert request_id
29
+ end
30
+
31
+ def test_timestamp
32
+ assert_kind_of Time, timestamp
33
+ end
34
+
35
+ def test_response_context
36
+ assert response_context
37
+ end
38
+ end
@@ -2,6 +2,8 @@ require 'helper'
2
2
  require 'peddler/xml_parser'
3
3
 
4
4
  class TestPeddlerXMLParser < MiniTest::Test
5
+ Parser = Class.new(::Peddler::XMLParser)
6
+
5
7
  def setup
6
8
  body = '<Foo>Bar</Foo>'
7
9
 
@@ -13,7 +15,7 @@ class TestPeddlerXMLParser < MiniTest::Test
13
15
  }
14
16
  )
15
17
 
16
- @parser = Peddler::XMLParser.new(res)
18
+ @parser = Parser.new(res)
17
19
  end
18
20
 
19
21
  def test_does_not_implement_parsing
@@ -22,6 +24,11 @@ class TestPeddlerXMLParser < MiniTest::Test
22
24
  end
23
25
  end
24
26
 
27
+ def test_digs_data
28
+ @parser.instance_variable_set :@data, foo: { bar: :baz }
29
+ assert_equal :baz, @parser.dig(:foo, :bar)
30
+ end
31
+
25
32
  def test_validates
26
33
  assert @parser.valid?
27
34
  end
@@ -9,7 +9,7 @@ class TestPeddlerXMLResponseParser < MiniTest::Test
9
9
  end
10
10
 
11
11
  def test_parses_messages
12
- body = '<Response><Message><Foo>Bar</Foo></Message></Response>'
12
+ body = '<Response><MessageType>ProcessingReport</MessageType><Message><Foo>Bar</Foo></Message></Response>'
13
13
  parser = Peddler::XMLResponseParser.new(response(body))
14
14
  assert_equal 'Bar', parser.parse['Foo']
15
15
  end
@@ -0,0 +1,2964 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://mws.amazonservices.ca/Products/2011-10-01
6
+ body:
7
+ encoding: UTF-8
8
+ string: ASIN=1780935374&AWSAccessKeyId=FILTERED&Action=GetLowestPricedOffersForASIN&ItemCondition=New&MarketplaceId=A2EUQ1WTGCTBG2&SellerId=FILTERED&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2017-01-29T23%3A55%3A25Z&Version=2011-10-01&Signature=H7X%2BMTLCIcVYxR0WamedUEDgxfNqL9llzZQlFSLxGVE%3D
9
+ headers:
10
+ User-Agent:
11
+ - Jeff/1.5.2 (Language=Ruby; Hakans-MacBook.home)
12
+ Content-Type:
13
+ - application/x-www-form-urlencoded; charset=UTF-8
14
+ response:
15
+ status:
16
+ code: 200
17
+ message:
18
+ headers:
19
+ Server:
20
+ - Server
21
+ Date:
22
+ - Sun, 29 Jan 2017 23:55:25 GMT
23
+ Content-Type:
24
+ - application/xml
25
+ Connection:
26
+ - keep-alive
27
+ x-mws-quota-max:
28
+ - '200.0'
29
+ x-mws-quota-remaining:
30
+ - '200.0'
31
+ x-mws-quota-resetsOn:
32
+ - '2017-01-30T00:03:00.000Z'
33
+ x-mws-request-id:
34
+ - 408ccd3b-7fe0-4a9d-a998-af75cb2a396e
35
+ x-mws-timestamp:
36
+ - '2017-01-29T23:55:25.356Z'
37
+ x-mws-response-context:
38
+ - SaHAU/jW5vZVmM0RSfRb6Ez6EHjAzHKKyHCiQISPEtJS/Ftnv5EE2mxzsi4bi7z3862KmU4Cex79
39
+ PE0mhthtVA==
40
+ Vary:
41
+ - Accept-Encoding,User-Agent
42
+ body:
43
+ encoding: ASCII-8BIT
44
+ string: |-
45
+ <?xml version="1.0"?><GetLowestPricedOffersForASINResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
46
+ <GetLowestPricedOffersForASINResult MarketplaceID="A2EUQ1WTGCTBG2" ItemCondition="New" ASIN="1780935374" status="Success">
47
+ <Identifier>
48
+ <MarketplaceId>A2EUQ1WTGCTBG2</MarketplaceId>
49
+ <ASIN>1780935374</ASIN>
50
+ <ItemCondition>New</ItemCondition>
51
+ <TimeOfOfferChange>2017-01-29T23:40:45.695Z</TimeOfOfferChange>
52
+ </Identifier>
53
+ <Summary>
54
+ <TotalOfferCount>10</TotalOfferCount>
55
+ <NumberOfOffers>
56
+ <OfferCount condition="used" fulfillmentChannel="Merchant">3</OfferCount>
57
+ <OfferCount condition="new" fulfillmentChannel="Merchant">7</OfferCount>
58
+ </NumberOfOffers>
59
+ <LowestPrices>
60
+ <LowestPrice condition="used" fulfillmentChannel="Merchant">
61
+ <LandedPrice>
62
+ <CurrencyCode>CAD</CurrencyCode>
63
+ <Amount>FILTERED</Amount>
64
+ </LandedPrice>
65
+ <ListingPrice>
66
+ <CurrencyCode>CAD</CurrencyCode>
67
+ <Amount>FILTERED</Amount>
68
+ </ListingPrice>
69
+ <Shipping>
70
+ <CurrencyCode>CAD</CurrencyCode>
71
+ <Amount>FILTERED</Amount>
72
+ </Shipping>
73
+ </LowestPrice>
74
+ <LowestPrice condition="new" fulfillmentChannel="Merchant">
75
+ <LandedPrice>
76
+ <CurrencyCode>CAD</CurrencyCode>
77
+ <Amount>FILTERED</Amount>
78
+ </LandedPrice>
79
+ <ListingPrice>
80
+ <CurrencyCode>CAD</CurrencyCode>
81
+ <Amount>FILTERED</Amount>
82
+ </ListingPrice>
83
+ <Shipping>
84
+ <CurrencyCode>CAD</CurrencyCode>
85
+ <Amount>FILTERED</Amount>
86
+ </Shipping>
87
+ </LowestPrice>
88
+ </LowestPrices>
89
+ <BuyBoxEligibleOffers>
90
+ <OfferCount condition="used" fulfillmentChannel="Merchant">2</OfferCount>
91
+ <OfferCount condition="new" fulfillmentChannel="Merchant">1</OfferCount>
92
+ </BuyBoxEligibleOffers>
93
+ </Summary>
94
+ <Offers>
95
+ <Offer>
96
+ <SubCondition>new</SubCondition>
97
+ <SellerFeedbackRating>
98
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
99
+ <FeedbackCount>0</FeedbackCount>
100
+ </SellerFeedbackRating>
101
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
102
+ <ListingPrice>
103
+ <CurrencyCode>CAD</CurrencyCode>
104
+ <Amount>FILTERED</Amount>
105
+ </ListingPrice>
106
+ <Shipping>
107
+ <CurrencyCode>CAD</CurrencyCode>
108
+ <Amount>FILTERED</Amount>
109
+ </Shipping>
110
+ <ShipsFrom>
111
+ <Country>IN</Country>
112
+ </ShipsFrom>
113
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
114
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
115
+ </Offer>
116
+ <Offer>
117
+ <SubCondition>new</SubCondition>
118
+ <SellerFeedbackRating>
119
+ <SellerPositiveFeedbackRating>95.0</SellerPositiveFeedbackRating>
120
+ <FeedbackCount>3255</FeedbackCount>
121
+ </SellerFeedbackRating>
122
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
123
+ <ListingPrice>
124
+ <CurrencyCode>CAD</CurrencyCode>
125
+ <Amount>FILTERED</Amount>
126
+ </ListingPrice>
127
+ <Shipping>
128
+ <CurrencyCode>CAD</CurrencyCode>
129
+ <Amount>FILTERED</Amount>
130
+ </Shipping>
131
+ <ShipsFrom>
132
+ <Country>DE</Country>
133
+ </ShipsFrom>
134
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
135
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
136
+ </Offer>
137
+ <Offer>
138
+ <SubCondition>new</SubCondition>
139
+ <SellerFeedbackRating>
140
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
141
+ <FeedbackCount>0</FeedbackCount>
142
+ </SellerFeedbackRating>
143
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
144
+ <ListingPrice>
145
+ <CurrencyCode>CAD</CurrencyCode>
146
+ <Amount>FILTERED</Amount>
147
+ </ListingPrice>
148
+ <Shipping>
149
+ <CurrencyCode>CAD</CurrencyCode>
150
+ <Amount>FILTERED</Amount>
151
+ </Shipping>
152
+ <ShipsFrom>
153
+ <Country>IN</Country>
154
+ </ShipsFrom>
155
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
156
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
157
+ </Offer>
158
+ <Offer>
159
+ <SubCondition>new</SubCondition>
160
+ <SellerFeedbackRating>
161
+ <SellerPositiveFeedbackRating>94.0</SellerPositiveFeedbackRating>
162
+ <FeedbackCount>464</FeedbackCount>
163
+ </SellerFeedbackRating>
164
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
165
+ <ListingPrice>
166
+ <CurrencyCode>CAD</CurrencyCode>
167
+ <Amount>FILTERED</Amount>
168
+ </ListingPrice>
169
+ <Shipping>
170
+ <CurrencyCode>CAD</CurrencyCode>
171
+ <Amount>FILTERED</Amount>
172
+ </Shipping>
173
+ <ShipsFrom>
174
+ <Country>IE</Country>
175
+ </ShipsFrom>
176
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
177
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
178
+ </Offer>
179
+ <Offer>
180
+ <SubCondition>new</SubCondition>
181
+ <SellerFeedbackRating>
182
+ <SellerPositiveFeedbackRating>94.0</SellerPositiveFeedbackRating>
183
+ <FeedbackCount>17286</FeedbackCount>
184
+ </SellerFeedbackRating>
185
+ <ShippingTime minimumHours="48" maximumHours="72" availabilityType="NOW"/>
186
+ <ListingPrice>
187
+ <CurrencyCode>CAD</CurrencyCode>
188
+ <Amount>FILTERED</Amount>
189
+ </ListingPrice>
190
+ <Shipping>
191
+ <CurrencyCode>CAD</CurrencyCode>
192
+ <Amount>FILTERED</Amount>
193
+ </Shipping>
194
+ <ShipsFrom>
195
+ <Country></Country>
196
+ </ShipsFrom>
197
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
198
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
199
+ </Offer>
200
+ <Offer>
201
+ <SubCondition>new</SubCondition>
202
+ <SellerFeedbackRating>
203
+ <SellerPositiveFeedbackRating>100.0</SellerPositiveFeedbackRating>
204
+ <FeedbackCount>32</FeedbackCount>
205
+ </SellerFeedbackRating>
206
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
207
+ <ListingPrice>
208
+ <CurrencyCode>CAD</CurrencyCode>
209
+ <Amount>FILTERED</Amount>
210
+ </ListingPrice>
211
+ <Shipping>
212
+ <CurrencyCode>CAD</CurrencyCode>
213
+ <Amount>FILTERED</Amount>
214
+ </Shipping>
215
+ <ShipsFrom>
216
+ <Country>DE</Country>
217
+ </ShipsFrom>
218
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
219
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
220
+ </Offer>
221
+ <Offer>
222
+ <SubCondition>new</SubCondition>
223
+ <SellerFeedbackRating>
224
+ <SellerPositiveFeedbackRating>98.0</SellerPositiveFeedbackRating>
225
+ <FeedbackCount>43</FeedbackCount>
226
+ </SellerFeedbackRating>
227
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
228
+ <ListingPrice>
229
+ <CurrencyCode>CAD</CurrencyCode>
230
+ <Amount>FILTERED</Amount>
231
+ </ListingPrice>
232
+ <Shipping>
233
+ <CurrencyCode>CAD</CurrencyCode>
234
+ <Amount>FILTERED</Amount>
235
+ </Shipping>
236
+ <ShipsFrom>
237
+ <Country>GB</Country>
238
+ </ShipsFrom>
239
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
240
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
241
+ </Offer>
242
+ </Offers>
243
+ </GetLowestPricedOffersForASINResult>
244
+ <ResponseMetadata>
245
+ <RequestId>408ccd3b-7fe0-4a9d-a998-af75cb2a396e</RequestId>
246
+ </ResponseMetadata>
247
+ </GetLowestPricedOffersForASINResponse>
248
+ http_version:
249
+ recorded_at: Sun, 29 Jan 2017 23:55:25 GMT
250
+ - request:
251
+ method: post
252
+ uri: https://mws.amazonservices.com.mx/Products/2011-10-01
253
+ body:
254
+ encoding: UTF-8
255
+ string: ASIN=1780935374&AWSAccessKeyId=FILTERED&Action=GetLowestPricedOffersForASIN&ItemCondition=New&MarketplaceId=A1AM78C64UM0Y8&SellerId=FILTERED&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2017-01-29T23%3A55%3A25Z&Version=2011-10-01&Signature=d%2FQR7okNPKpJC6iph%2B%2FlBvyyzaek5XUz69XUvyNMe5E%3D
256
+ headers:
257
+ User-Agent:
258
+ - Jeff/1.5.2 (Language=Ruby; Hakans-MacBook.home)
259
+ Content-Type:
260
+ - application/x-www-form-urlencoded; charset=UTF-8
261
+ response:
262
+ status:
263
+ code: 200
264
+ message:
265
+ headers:
266
+ Server:
267
+ - Server
268
+ Date:
269
+ - Sun, 29 Jan 2017 23:55:25 GMT
270
+ Content-Type:
271
+ - application/xml
272
+ Content-Length:
273
+ - '3615'
274
+ Connection:
275
+ - keep-alive
276
+ x-mws-quota-max:
277
+ - '200.0'
278
+ x-mws-quota-remaining:
279
+ - '200.0'
280
+ x-mws-quota-resetsOn:
281
+ - '2017-01-30T00:15:00.000Z'
282
+ x-mws-request-id:
283
+ - 12fc4adb-e3a3-4b84-afb6-0c78d3d3bf31
284
+ x-mws-timestamp:
285
+ - '2017-01-29T23:55:25.891Z'
286
+ x-mws-response-context:
287
+ - ZagpR2nyolS2ha3yQooYvK1C55oyNZ9qD9jHqwRqHI5c76CcvGrHH/HZZaei8HJxj3Q7ecdSy0qa
288
+ a2NZY4g+fA==
289
+ Vary:
290
+ - Accept-Encoding,User-Agent
291
+ body:
292
+ encoding: ASCII-8BIT
293
+ string: |-
294
+ <?xml version="1.0"?><GetLowestPricedOffersForASINResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
295
+ <GetLowestPricedOffersForASINResult MarketplaceID="A1AM78C64UM0Y8" ItemCondition="New" ASIN="1780935374" status="Success">
296
+ <Identifier>
297
+ <MarketplaceId>A1AM78C64UM0Y8</MarketplaceId>
298
+ <ASIN>1780935374</ASIN>
299
+ <ItemCondition>New</ItemCondition>
300
+ <TimeOfOfferChange>2017-01-28T17:12:52.330Z</TimeOfOfferChange>
301
+ </Identifier>
302
+ <Summary>
303
+ <TotalOfferCount>2</TotalOfferCount>
304
+ <NumberOfOffers>
305
+ <OfferCount condition="new" fulfillmentChannel="Amazon">2</OfferCount>
306
+ </NumberOfOffers>
307
+ <LowestPrices>
308
+ <LowestPrice condition="new" fulfillmentChannel="Amazon">
309
+ <LandedPrice>
310
+ <CurrencyCode>MXN</CurrencyCode>
311
+ <Amount>FILTERED</Amount>
312
+ </LandedPrice>
313
+ <ListingPrice>
314
+ <CurrencyCode>MXN</CurrencyCode>
315
+ <Amount>FILTERED</Amount>
316
+ </ListingPrice>
317
+ <Shipping>
318
+ <CurrencyCode>MXN</CurrencyCode>
319
+ <Amount>FILTERED</Amount>
320
+ </Shipping>
321
+ </LowestPrice>
322
+ </LowestPrices>
323
+ <ListPrice>
324
+ <CurrencyCode>USD</CurrencyCode>
325
+ <Amount>FILTERED</Amount>
326
+ </ListPrice>
327
+ <BuyBoxEligibleOffers>
328
+ <OfferCount condition="new" fulfillmentChannel="Amazon">2</OfferCount>
329
+ </BuyBoxEligibleOffers>
330
+ </Summary>
331
+ <Offers>
332
+ <Offer>
333
+ <SubCondition>new</SubCondition>
334
+ <SellerFeedbackRating>
335
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
336
+ <FeedbackCount>0</FeedbackCount>
337
+ </SellerFeedbackRating>
338
+ <ShippingTime minimumHours="672" maximumHours="1008" availabilityType="NOW"/>
339
+ <ListingPrice>
340
+ <CurrencyCode>MXN</CurrencyCode>
341
+ <Amount>FILTERED</Amount>
342
+ </ListingPrice>
343
+ <Shipping>
344
+ <CurrencyCode>MXN</CurrencyCode>
345
+ <Amount>FILTERED</Amount>
346
+ </Shipping>
347
+ <IsFulfilledByAmazon>true</IsFulfilledByAmazon>
348
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
349
+ </Offer>
350
+ <Offer>
351
+ <SubCondition>new</SubCondition>
352
+ <SellerFeedbackRating>
353
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
354
+ <FeedbackCount>0</FeedbackCount>
355
+ </SellerFeedbackRating>
356
+ <ShippingTime minimumHours="0" maximumHours="0" availabilityType="NOW"/>
357
+ <ListingPrice>
358
+ <CurrencyCode>MXN</CurrencyCode>
359
+ <Amount>FILTERED</Amount>
360
+ </ListingPrice>
361
+ <Shipping>
362
+ <CurrencyCode>MXN</CurrencyCode>
363
+ <Amount>FILTERED</Amount>
364
+ </Shipping>
365
+ <IsFulfilledByAmazon>true</IsFulfilledByAmazon>
366
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
367
+ </Offer>
368
+ </Offers>
369
+ </GetLowestPricedOffersForASINResult>
370
+ <ResponseMetadata>
371
+ <RequestId>12fc4adb-e3a3-4b84-afb6-0c78d3d3bf31</RequestId>
372
+ </ResponseMetadata>
373
+ </GetLowestPricedOffersForASINResponse>
374
+ http_version:
375
+ recorded_at: Sun, 29 Jan 2017 23:55:26 GMT
376
+ - request:
377
+ method: post
378
+ uri: https://mws-eu.amazonservices.com/Products/2011-10-01
379
+ body:
380
+ encoding: UTF-8
381
+ string: ASIN=1780935374&AWSAccessKeyId=FILTERED&Action=GetLowestPricedOffersForASIN&ItemCondition=New&MarketplaceId=A13V1IB3VIYZZH&SellerId=FILTERED&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2017-01-29T23%3A55%3A26Z&Version=2011-10-01&Signature=2X6DAb8dBXo4tik0R2rC6ETsB135RLpUfjxESnHvJBo%3D
382
+ headers:
383
+ User-Agent:
384
+ - Jeff/1.5.2 (Language=Ruby; Hakans-MacBook.home)
385
+ Content-Type:
386
+ - application/x-www-form-urlencoded; charset=UTF-8
387
+ response:
388
+ status:
389
+ code: 200
390
+ message:
391
+ headers:
392
+ Server:
393
+ - Server
394
+ Date:
395
+ - Sun, 29 Jan 2017 23:55:26 GMT
396
+ Content-Type:
397
+ - application/xml
398
+ Connection:
399
+ - keep-alive
400
+ x-mws-quota-max:
401
+ - '200.0'
402
+ x-mws-quota-remaining:
403
+ - '200.0'
404
+ x-mws-quota-resetsOn:
405
+ - '2017-01-30T00:47:00.000Z'
406
+ x-mws-request-id:
407
+ - 4e4ab75b-e3b6-4ef8-a98b-da4da3bb1748
408
+ x-mws-timestamp:
409
+ - '2017-01-29T23:55:26.381Z'
410
+ x-mws-response-context:
411
+ - PwmFmPptKhGDLv0NDKimK2LM9F04v6kc+Vr3OtBxKAh3izKQmfX+CdPBF7MKwdV0bZZBW1//xMMF
412
+ SklxK/abPw==
413
+ Vary:
414
+ - Accept-Encoding,User-Agent
415
+ body:
416
+ encoding: ASCII-8BIT
417
+ string: |-
418
+ <?xml version="1.0"?><GetLowestPricedOffersForASINResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
419
+ <GetLowestPricedOffersForASINResult MarketplaceID="A13V1IB3VIYZZH" ItemCondition="New" ASIN="1780935374" status="Success">
420
+ <Identifier>
421
+ <MarketplaceId>A13V1IB3VIYZZH</MarketplaceId>
422
+ <ASIN>1780935374</ASIN>
423
+ <ItemCondition>New</ItemCondition>
424
+ <TimeOfOfferChange>2017-01-29T02:40:30.216Z</TimeOfOfferChange>
425
+ </Identifier>
426
+ <Summary>
427
+ <TotalOfferCount>9</TotalOfferCount>
428
+ <NumberOfOffers>
429
+ <OfferCount condition="used" fulfillmentChannel="Merchant">2</OfferCount>
430
+ <OfferCount condition="new" fulfillmentChannel="Amazon">1</OfferCount>
431
+ <OfferCount condition="new" fulfillmentChannel="Merchant">6</OfferCount>
432
+ </NumberOfOffers>
433
+ <LowestPrices>
434
+ <LowestPrice condition="used" fulfillmentChannel="Merchant">
435
+ <LandedPrice>
436
+ <CurrencyCode>EUR</CurrencyCode>
437
+ <Amount>FILTERED</Amount>
438
+ </LandedPrice>
439
+ <ListingPrice>
440
+ <CurrencyCode>EUR</CurrencyCode>
441
+ <Amount>FILTERED</Amount>
442
+ </ListingPrice>
443
+ <Shipping>
444
+ <CurrencyCode>EUR</CurrencyCode>
445
+ <Amount>FILTERED</Amount>
446
+ </Shipping>
447
+ </LowestPrice>
448
+ <LowestPrice condition="new" fulfillmentChannel="Amazon">
449
+ <LandedPrice>
450
+ <CurrencyCode>EUR</CurrencyCode>
451
+ <Amount>FILTERED</Amount>
452
+ </LandedPrice>
453
+ <ListingPrice>
454
+ <CurrencyCode>EUR</CurrencyCode>
455
+ <Amount>FILTERED</Amount>
456
+ </ListingPrice>
457
+ <Shipping>
458
+ <CurrencyCode>EUR</CurrencyCode>
459
+ <Amount>FILTERED</Amount>
460
+ </Shipping>
461
+ </LowestPrice>
462
+ <LowestPrice condition="new" fulfillmentChannel="Merchant">
463
+ <LandedPrice>
464
+ <CurrencyCode>EUR</CurrencyCode>
465
+ <Amount>FILTERED</Amount>
466
+ </LandedPrice>
467
+ <ListingPrice>
468
+ <CurrencyCode>EUR</CurrencyCode>
469
+ <Amount>FILTERED</Amount>
470
+ </ListingPrice>
471
+ <Shipping>
472
+ <CurrencyCode>EUR</CurrencyCode>
473
+ <Amount>FILTERED</Amount>
474
+ </Shipping>
475
+ </LowestPrice>
476
+ </LowestPrices>
477
+ <BuyBoxPrices>
478
+ <BuyBoxPrice condition="New">
479
+ <LandedPrice>
480
+ <CurrencyCode>EUR</CurrencyCode>
481
+ <Amount>FILTERED</Amount>
482
+ </LandedPrice>
483
+ <ListingPrice>
484
+ <CurrencyCode>EUR</CurrencyCode>
485
+ <Amount>FILTERED</Amount>
486
+ </ListingPrice>
487
+ <Shipping>
488
+ <CurrencyCode>EUR</CurrencyCode>
489
+ <Amount>FILTERED</Amount>
490
+ </Shipping>
491
+ </BuyBoxPrice>
492
+ </BuyBoxPrices>
493
+ <ListPrice>
494
+ <CurrencyCode>EUR</CurrencyCode>
495
+ <Amount>FILTERED</Amount>
496
+ </ListPrice>
497
+ <BuyBoxEligibleOffers>
498
+ <OfferCount condition="used" fulfillmentChannel="Merchant">1</OfferCount>
499
+ <OfferCount condition="new" fulfillmentChannel="Amazon">1</OfferCount>
500
+ <OfferCount condition="new" fulfillmentChannel="Merchant">3</OfferCount>
501
+ </BuyBoxEligibleOffers>
502
+ </Summary>
503
+ <Offers>
504
+ <Offer>
505
+ <SubCondition>new</SubCondition>
506
+ <SellerFeedbackRating>
507
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
508
+ <FeedbackCount>0</FeedbackCount>
509
+ </SellerFeedbackRating>
510
+ <ShippingTime minimumHours="0" maximumHours="0" availabilityType="NOW"/>
511
+ <ListingPrice>
512
+ <CurrencyCode>EUR</CurrencyCode>
513
+ <Amount>FILTERED</Amount>
514
+ </ListingPrice>
515
+ <Shipping>
516
+ <CurrencyCode>EUR</CurrencyCode>
517
+ <Amount>FILTERED</Amount>
518
+ </Shipping>
519
+ <IsFulfilledByAmazon>true</IsFulfilledByAmazon>
520
+ <IsBuyBoxWinner>true</IsBuyBoxWinner>
521
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
522
+ </Offer>
523
+ <Offer>
524
+ <SubCondition>new</SubCondition>
525
+ <SellerFeedbackRating>
526
+ <SellerPositiveFeedbackRating>92.0</SellerPositiveFeedbackRating>
527
+ <FeedbackCount>2330</FeedbackCount>
528
+ </SellerFeedbackRating>
529
+ <ShippingTime minimumHours="48" maximumHours="72" availabilityType="NOW"/>
530
+ <ListingPrice>
531
+ <CurrencyCode>EUR</CurrencyCode>
532
+ <Amount>FILTERED</Amount>
533
+ </ListingPrice>
534
+ <Shipping>
535
+ <CurrencyCode>EUR</CurrencyCode>
536
+ <Amount>FILTERED</Amount>
537
+ </Shipping>
538
+ <ShipsFrom>
539
+ <Country>GB</Country>
540
+ </ShipsFrom>
541
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
542
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
543
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
544
+ </Offer>
545
+ <Offer>
546
+ <SubCondition>new</SubCondition>
547
+ <SellerFeedbackRating>
548
+ <SellerPositiveFeedbackRating>97.0</SellerPositiveFeedbackRating>
549
+ <FeedbackCount>5552</FeedbackCount>
550
+ </SellerFeedbackRating>
551
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
552
+ <ListingPrice>
553
+ <CurrencyCode>EUR</CurrencyCode>
554
+ <Amount>FILTERED</Amount>
555
+ </ListingPrice>
556
+ <Shipping>
557
+ <CurrencyCode>EUR</CurrencyCode>
558
+ <Amount>FILTERED</Amount>
559
+ </Shipping>
560
+ <ShipsFrom>
561
+ <Country></Country>
562
+ </ShipsFrom>
563
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
564
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
565
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
566
+ </Offer>
567
+ <Offer>
568
+ <SubCondition>new</SubCondition>
569
+ <SellerFeedbackRating>
570
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
571
+ <FeedbackCount>0</FeedbackCount>
572
+ </SellerFeedbackRating>
573
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
574
+ <ListingPrice>
575
+ <CurrencyCode>EUR</CurrencyCode>
576
+ <Amount>FILTERED</Amount>
577
+ </ListingPrice>
578
+ <Shipping>
579
+ <CurrencyCode>EUR</CurrencyCode>
580
+ <Amount>FILTERED</Amount>
581
+ </Shipping>
582
+ <ShipsFrom>
583
+ <Country>IN</Country>
584
+ </ShipsFrom>
585
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
586
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
587
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
588
+ </Offer>
589
+ <Offer>
590
+ <SubCondition>new</SubCondition>
591
+ <SellerFeedbackRating>
592
+ <SellerPositiveFeedbackRating>89.0</SellerPositiveFeedbackRating>
593
+ <FeedbackCount>979</FeedbackCount>
594
+ </SellerFeedbackRating>
595
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
596
+ <ListingPrice>
597
+ <CurrencyCode>EUR</CurrencyCode>
598
+ <Amount>FILTERED</Amount>
599
+ </ListingPrice>
600
+ <Shipping>
601
+ <CurrencyCode>EUR</CurrencyCode>
602
+ <Amount>FILTERED</Amount>
603
+ </Shipping>
604
+ <ShipsFrom>
605
+ <Country>DE</Country>
606
+ </ShipsFrom>
607
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
608
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
609
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
610
+ </Offer>
611
+ <Offer>
612
+ <SubCondition>new</SubCondition>
613
+ <SellerFeedbackRating>
614
+ <SellerPositiveFeedbackRating>92.0</SellerPositiveFeedbackRating>
615
+ <FeedbackCount>12625</FeedbackCount>
616
+ </SellerFeedbackRating>
617
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
618
+ <ListingPrice>
619
+ <CurrencyCode>EUR</CurrencyCode>
620
+ <Amount>FILTERED</Amount>
621
+ </ListingPrice>
622
+ <Shipping>
623
+ <CurrencyCode>EUR</CurrencyCode>
624
+ <Amount>FILTERED</Amount>
625
+ </Shipping>
626
+ <ShipsFrom>
627
+ <Country>DE</Country>
628
+ </ShipsFrom>
629
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
630
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
631
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
632
+ </Offer>
633
+ <Offer>
634
+ <SubCondition>new</SubCondition>
635
+ <SellerFeedbackRating>
636
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
637
+ <FeedbackCount>0</FeedbackCount>
638
+ </SellerFeedbackRating>
639
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
640
+ <ListingPrice>
641
+ <CurrencyCode>EUR</CurrencyCode>
642
+ <Amount>FILTERED</Amount>
643
+ </ListingPrice>
644
+ <Shipping>
645
+ <CurrencyCode>EUR</CurrencyCode>
646
+ <Amount>FILTERED</Amount>
647
+ </Shipping>
648
+ <ShipsFrom>
649
+ <Country>IN</Country>
650
+ </ShipsFrom>
651
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
652
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
653
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
654
+ </Offer>
655
+ </Offers>
656
+ </GetLowestPricedOffersForASINResult>
657
+ <ResponseMetadata>
658
+ <RequestId>4e4ab75b-e3b6-4ef8-a98b-da4da3bb1748</RequestId>
659
+ </ResponseMetadata>
660
+ </GetLowestPricedOffersForASINResponse>
661
+ http_version:
662
+ recorded_at: Sun, 29 Jan 2017 23:55:26 GMT
663
+ - request:
664
+ method: post
665
+ uri: https://mws-eu.amazonservices.com/Products/2011-10-01
666
+ body:
667
+ encoding: UTF-8
668
+ string: ASIN=1780935374&AWSAccessKeyId=FILTERED&Action=GetLowestPricedOffersForASIN&ItemCondition=New&MarketplaceId=APJ6JRA9NG5V4&SellerId=FILTERED&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2017-01-29T23%3A55%3A26Z&Version=2011-10-01&Signature=xm2RDsPkOny8978d9XG0%2BgK455HgOMjyan%2FavtSP%2BqQ%3D
669
+ headers:
670
+ User-Agent:
671
+ - Jeff/1.5.2 (Language=Ruby; Hakans-MacBook.home)
672
+ Content-Type:
673
+ - application/x-www-form-urlencoded; charset=UTF-8
674
+ response:
675
+ status:
676
+ code: 200
677
+ message:
678
+ headers:
679
+ Server:
680
+ - Server
681
+ Date:
682
+ - Sun, 29 Jan 2017 23:55:26 GMT
683
+ Content-Type:
684
+ - application/xml
685
+ Connection:
686
+ - keep-alive
687
+ x-mws-quota-max:
688
+ - '200.0'
689
+ x-mws-quota-remaining:
690
+ - '200.0'
691
+ x-mws-quota-resetsOn:
692
+ - '2017-01-30T00:54:00.000Z'
693
+ x-mws-request-id:
694
+ - 28b495b8-e3ef-4c9e-898f-93e63434ccfa
695
+ x-mws-timestamp:
696
+ - '2017-01-29T23:55:26.583Z'
697
+ x-mws-response-context:
698
+ - UGUxwOCA5UJm6J0pAoRXrvYoZX8GEJRRi/hHNlFi7cW2RYCrLGQnWnlBhgZv4M42qRjwF7CsPb+L
699
+ 5Dq63FL4Tg==
700
+ Vary:
701
+ - Accept-Encoding,User-Agent
702
+ body:
703
+ encoding: ASCII-8BIT
704
+ string: |-
705
+ <?xml version="1.0"?><GetLowestPricedOffersForASINResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
706
+ <GetLowestPricedOffersForASINResult MarketplaceID="APJ6JRA9NG5V4" ItemCondition="New" ASIN="1780935374" status="Success">
707
+ <Identifier>
708
+ <MarketplaceId>APJ6JRA9NG5V4</MarketplaceId>
709
+ <ASIN>1780935374</ASIN>
710
+ <ItemCondition>New</ItemCondition>
711
+ <TimeOfOfferChange>2017-01-28T07:04:12.045Z</TimeOfOfferChange>
712
+ </Identifier>
713
+ <Summary>
714
+ <TotalOfferCount>5</TotalOfferCount>
715
+ <NumberOfOffers>
716
+ <OfferCount condition="new" fulfillmentChannel="Amazon">1</OfferCount>
717
+ <OfferCount condition="new" fulfillmentChannel="Merchant">4</OfferCount>
718
+ </NumberOfOffers>
719
+ <LowestPrices>
720
+ <LowestPrice condition="new" fulfillmentChannel="Amazon">
721
+ <LandedPrice>
722
+ <CurrencyCode>EUR</CurrencyCode>
723
+ <Amount>FILTERED</Amount>
724
+ </LandedPrice>
725
+ <ListingPrice>
726
+ <CurrencyCode>EUR</CurrencyCode>
727
+ <Amount>FILTERED</Amount>
728
+ </ListingPrice>
729
+ <Shipping>
730
+ <CurrencyCode>EUR</CurrencyCode>
731
+ <Amount>FILTERED</Amount>
732
+ </Shipping>
733
+ </LowestPrice>
734
+ <LowestPrice condition="new" fulfillmentChannel="Merchant">
735
+ <LandedPrice>
736
+ <CurrencyCode>EUR</CurrencyCode>
737
+ <Amount>FILTERED</Amount>
738
+ </LandedPrice>
739
+ <ListingPrice>
740
+ <CurrencyCode>EUR</CurrencyCode>
741
+ <Amount>FILTERED</Amount>
742
+ </ListingPrice>
743
+ <Shipping>
744
+ <CurrencyCode>EUR</CurrencyCode>
745
+ <Amount>FILTERED</Amount>
746
+ </Shipping>
747
+ </LowestPrice>
748
+ </LowestPrices>
749
+ <BuyBoxPrices>
750
+ <BuyBoxPrice condition="New">
751
+ <LandedPrice>
752
+ <CurrencyCode>EUR</CurrencyCode>
753
+ <Amount>FILTERED</Amount>
754
+ </LandedPrice>
755
+ <ListingPrice>
756
+ <CurrencyCode>EUR</CurrencyCode>
757
+ <Amount>FILTERED</Amount>
758
+ </ListingPrice>
759
+ <Shipping>
760
+ <CurrencyCode>EUR</CurrencyCode>
761
+ <Amount>FILTERED</Amount>
762
+ </Shipping>
763
+ </BuyBoxPrice>
764
+ </BuyBoxPrices>
765
+ <ListPrice>
766
+ <CurrencyCode>EUR</CurrencyCode>
767
+ <Amount>FILTERED</Amount>
768
+ </ListPrice>
769
+ <BuyBoxEligibleOffers>
770
+ <OfferCount condition="new" fulfillmentChannel="Amazon">1</OfferCount>
771
+ <OfferCount condition="new" fulfillmentChannel="Merchant">2</OfferCount>
772
+ </BuyBoxEligibleOffers>
773
+ </Summary>
774
+ <Offers>
775
+ <Offer>
776
+ <SubCondition>new</SubCondition>
777
+ <SellerFeedbackRating>
778
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
779
+ <FeedbackCount>0</FeedbackCount>
780
+ </SellerFeedbackRating>
781
+ <ShippingTime minimumHours="0" maximumHours="0" availabilityType="NOW"/>
782
+ <ListingPrice>
783
+ <CurrencyCode>EUR</CurrencyCode>
784
+ <Amount>FILTERED</Amount>
785
+ </ListingPrice>
786
+ <Shipping>
787
+ <CurrencyCode>EUR</CurrencyCode>
788
+ <Amount>FILTERED</Amount>
789
+ </Shipping>
790
+ <IsFulfilledByAmazon>true</IsFulfilledByAmazon>
791
+ <IsBuyBoxWinner>true</IsBuyBoxWinner>
792
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
793
+ </Offer>
794
+ <Offer>
795
+ <SubCondition>new</SubCondition>
796
+ <SellerFeedbackRating>
797
+ <SellerPositiveFeedbackRating>96.0</SellerPositiveFeedbackRating>
798
+ <FeedbackCount>2537</FeedbackCount>
799
+ </SellerFeedbackRating>
800
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
801
+ <ListingPrice>
802
+ <CurrencyCode>EUR</CurrencyCode>
803
+ <Amount>FILTERED</Amount>
804
+ </ListingPrice>
805
+ <Shipping>
806
+ <CurrencyCode>EUR</CurrencyCode>
807
+ <Amount>FILTERED</Amount>
808
+ </Shipping>
809
+ <ShipsFrom>
810
+ <Country></Country>
811
+ </ShipsFrom>
812
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
813
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
814
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
815
+ </Offer>
816
+ <Offer>
817
+ <SubCondition>new</SubCondition>
818
+ <SellerFeedbackRating>
819
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
820
+ <FeedbackCount>0</FeedbackCount>
821
+ </SellerFeedbackRating>
822
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
823
+ <ListingPrice>
824
+ <CurrencyCode>EUR</CurrencyCode>
825
+ <Amount>FILTERED</Amount>
826
+ </ListingPrice>
827
+ <Shipping>
828
+ <CurrencyCode>EUR</CurrencyCode>
829
+ <Amount>FILTERED</Amount>
830
+ </Shipping>
831
+ <ShipsFrom>
832
+ <Country>IN</Country>
833
+ </ShipsFrom>
834
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
835
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
836
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
837
+ </Offer>
838
+ <Offer>
839
+ <SubCondition>new</SubCondition>
840
+ <SellerFeedbackRating>
841
+ <SellerPositiveFeedbackRating>91.0</SellerPositiveFeedbackRating>
842
+ <FeedbackCount>960</FeedbackCount>
843
+ </SellerFeedbackRating>
844
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
845
+ <ListingPrice>
846
+ <CurrencyCode>EUR</CurrencyCode>
847
+ <Amount>FILTERED</Amount>
848
+ </ListingPrice>
849
+ <Shipping>
850
+ <CurrencyCode>EUR</CurrencyCode>
851
+ <Amount>FILTERED</Amount>
852
+ </Shipping>
853
+ <ShipsFrom>
854
+ <Country>DE</Country>
855
+ </ShipsFrom>
856
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
857
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
858
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
859
+ </Offer>
860
+ <Offer>
861
+ <SubCondition>new</SubCondition>
862
+ <SellerFeedbackRating>
863
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
864
+ <FeedbackCount>0</FeedbackCount>
865
+ </SellerFeedbackRating>
866
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
867
+ <ListingPrice>
868
+ <CurrencyCode>EUR</CurrencyCode>
869
+ <Amount>FILTERED</Amount>
870
+ </ListingPrice>
871
+ <Shipping>
872
+ <CurrencyCode>EUR</CurrencyCode>
873
+ <Amount>FILTERED</Amount>
874
+ </Shipping>
875
+ <ShipsFrom>
876
+ <Country>IN</Country>
877
+ </ShipsFrom>
878
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
879
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
880
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
881
+ </Offer>
882
+ </Offers>
883
+ </GetLowestPricedOffersForASINResult>
884
+ <ResponseMetadata>
885
+ <RequestId>28b495b8-e3ef-4c9e-898f-93e63434ccfa</RequestId>
886
+ </ResponseMetadata>
887
+ </GetLowestPricedOffersForASINResponse>
888
+ http_version:
889
+ recorded_at: Sun, 29 Jan 2017 23:55:26 GMT
890
+ - request:
891
+ method: post
892
+ uri: https://mws-eu.amazonservices.com/Products/2011-10-01
893
+ body:
894
+ encoding: UTF-8
895
+ string: ASIN=1780935374&AWSAccessKeyId=FILTERED&Action=GetLowestPricedOffersForASIN&ItemCondition=New&MarketplaceId=A1RKKUPIHCS9HS&SellerId=FILTERED&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2017-01-29T23%3A55%3A26Z&Version=2011-10-01&Signature=i7l1doNEaqf58fLz2Cdz1E70vCxtaCROLtOS8C99jDg%3D
896
+ headers:
897
+ User-Agent:
898
+ - Jeff/1.5.2 (Language=Ruby; Hakans-MacBook.home)
899
+ Content-Type:
900
+ - application/x-www-form-urlencoded; charset=UTF-8
901
+ response:
902
+ status:
903
+ code: 200
904
+ message:
905
+ headers:
906
+ Server:
907
+ - Server
908
+ Date:
909
+ - Sun, 29 Jan 2017 23:55:26 GMT
910
+ Content-Type:
911
+ - application/xml
912
+ Connection:
913
+ - keep-alive
914
+ x-mws-quota-max:
915
+ - '200.0'
916
+ x-mws-quota-remaining:
917
+ - '200.0'
918
+ x-mws-quota-resetsOn:
919
+ - '2017-01-30T00:11:00.000Z'
920
+ x-mws-request-id:
921
+ - 593ab553-7add-4ec4-8b0e-312315da4d03
922
+ x-mws-timestamp:
923
+ - '2017-01-29T23:55:26.804Z'
924
+ x-mws-response-context:
925
+ - 7ylDsnfOXxoWEbdE0cRXM5esKMOe8uATZht0KXDpsbZRf41vnXk9ej6N+cmpIOml/IPjADlMw7in
926
+ UYGWXR/QHQ==
927
+ Vary:
928
+ - Accept-Encoding,User-Agent
929
+ body:
930
+ encoding: ASCII-8BIT
931
+ string: |-
932
+ <?xml version="1.0"?><GetLowestPricedOffersForASINResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
933
+ <GetLowestPricedOffersForASINResult MarketplaceID="A1RKKUPIHCS9HS" ItemCondition="New" ASIN="1780935374" status="Success">
934
+ <Identifier>
935
+ <MarketplaceId>A1RKKUPIHCS9HS</MarketplaceId>
936
+ <ASIN>1780935374</ASIN>
937
+ <ItemCondition>New</ItemCondition>
938
+ <TimeOfOfferChange>2017-01-29T21:22:20.734Z</TimeOfOfferChange>
939
+ </Identifier>
940
+ <Summary>
941
+ <TotalOfferCount>6</TotalOfferCount>
942
+ <NumberOfOffers>
943
+ <OfferCount condition="used" fulfillmentChannel="Merchant">1</OfferCount>
944
+ <OfferCount condition="new" fulfillmentChannel="Amazon">1</OfferCount>
945
+ <OfferCount condition="new" fulfillmentChannel="Merchant">4</OfferCount>
946
+ </NumberOfOffers>
947
+ <LowestPrices>
948
+ <LowestPrice condition="used" fulfillmentChannel="Merchant">
949
+ <LandedPrice>
950
+ <CurrencyCode>EUR</CurrencyCode>
951
+ <Amount>FILTERED</Amount>
952
+ </LandedPrice>
953
+ <ListingPrice>
954
+ <CurrencyCode>EUR</CurrencyCode>
955
+ <Amount>FILTERED</Amount>
956
+ </ListingPrice>
957
+ <Shipping>
958
+ <CurrencyCode>EUR</CurrencyCode>
959
+ <Amount>FILTERED</Amount>
960
+ </Shipping>
961
+ </LowestPrice>
962
+ <LowestPrice condition="new" fulfillmentChannel="Amazon">
963
+ <LandedPrice>
964
+ <CurrencyCode>EUR</CurrencyCode>
965
+ <Amount>FILTERED</Amount>
966
+ </LandedPrice>
967
+ <ListingPrice>
968
+ <CurrencyCode>EUR</CurrencyCode>
969
+ <Amount>FILTERED</Amount>
970
+ </ListingPrice>
971
+ <Shipping>
972
+ <CurrencyCode>EUR</CurrencyCode>
973
+ <Amount>FILTERED</Amount>
974
+ </Shipping>
975
+ </LowestPrice>
976
+ <LowestPrice condition="new" fulfillmentChannel="Merchant">
977
+ <LandedPrice>
978
+ <CurrencyCode>EUR</CurrencyCode>
979
+ <Amount>FILTERED</Amount>
980
+ </LandedPrice>
981
+ <ListingPrice>
982
+ <CurrencyCode>EUR</CurrencyCode>
983
+ <Amount>FILTERED</Amount>
984
+ </ListingPrice>
985
+ <Shipping>
986
+ <CurrencyCode>EUR</CurrencyCode>
987
+ <Amount>FILTERED</Amount>
988
+ </Shipping>
989
+ </LowestPrice>
990
+ </LowestPrices>
991
+ <BuyBoxPrices>
992
+ <BuyBoxPrice condition="New">
993
+ <LandedPrice>
994
+ <CurrencyCode>EUR</CurrencyCode>
995
+ <Amount>FILTERED</Amount>
996
+ </LandedPrice>
997
+ <ListingPrice>
998
+ <CurrencyCode>EUR</CurrencyCode>
999
+ <Amount>FILTERED</Amount>
1000
+ </ListingPrice>
1001
+ <Shipping>
1002
+ <CurrencyCode>EUR</CurrencyCode>
1003
+ <Amount>FILTERED</Amount>
1004
+ </Shipping>
1005
+ </BuyBoxPrice>
1006
+ </BuyBoxPrices>
1007
+ <ListPrice>
1008
+ <CurrencyCode>EUR</CurrencyCode>
1009
+ <Amount>FILTERED</Amount>
1010
+ </ListPrice>
1011
+ <BuyBoxEligibleOffers>
1012
+ <OfferCount condition="used" fulfillmentChannel="Merchant">0</OfferCount>
1013
+ <OfferCount condition="new" fulfillmentChannel="Amazon">1</OfferCount>
1014
+ <OfferCount condition="new" fulfillmentChannel="Merchant">1</OfferCount>
1015
+ </BuyBoxEligibleOffers>
1016
+ </Summary>
1017
+ <Offers>
1018
+ <Offer>
1019
+ <SubCondition>new</SubCondition>
1020
+ <SellerFeedbackRating>
1021
+ <SellerPositiveFeedbackRating>87.0</SellerPositiveFeedbackRating>
1022
+ <FeedbackCount>442</FeedbackCount>
1023
+ </SellerFeedbackRating>
1024
+ <ShippingTime minimumHours="48" maximumHours="72" availabilityType="NOW"/>
1025
+ <ListingPrice>
1026
+ <CurrencyCode>EUR</CurrencyCode>
1027
+ <Amount>FILTERED</Amount>
1028
+ </ListingPrice>
1029
+ <Shipping>
1030
+ <CurrencyCode>EUR</CurrencyCode>
1031
+ <Amount>FILTERED</Amount>
1032
+ </Shipping>
1033
+ <ShipsFrom>
1034
+ <Country>US</Country>
1035
+ </ShipsFrom>
1036
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1037
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1038
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
1039
+ </Offer>
1040
+ <Offer>
1041
+ <SubCondition>new</SubCondition>
1042
+ <SellerFeedbackRating>
1043
+ <SellerPositiveFeedbackRating>88.0</SellerPositiveFeedbackRating>
1044
+ <FeedbackCount>493</FeedbackCount>
1045
+ </SellerFeedbackRating>
1046
+ <ShippingTime minimumHours="48" maximumHours="72" availabilityType="NOW"/>
1047
+ <ListingPrice>
1048
+ <CurrencyCode>EUR</CurrencyCode>
1049
+ <Amount>FILTERED</Amount>
1050
+ </ListingPrice>
1051
+ <Shipping>
1052
+ <CurrencyCode>EUR</CurrencyCode>
1053
+ <Amount>FILTERED</Amount>
1054
+ </Shipping>
1055
+ <ShipsFrom>
1056
+ <Country>GB</Country>
1057
+ </ShipsFrom>
1058
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1059
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1060
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
1061
+ </Offer>
1062
+ <Offer>
1063
+ <SubCondition>new</SubCondition>
1064
+ <SellerFeedbackRating>
1065
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
1066
+ <FeedbackCount>0</FeedbackCount>
1067
+ </SellerFeedbackRating>
1068
+ <ShippingTime minimumHours="0" maximumHours="0" availabilityType="NOW"/>
1069
+ <ListingPrice>
1070
+ <CurrencyCode>EUR</CurrencyCode>
1071
+ <Amount>FILTERED</Amount>
1072
+ </ListingPrice>
1073
+ <Shipping>
1074
+ <CurrencyCode>EUR</CurrencyCode>
1075
+ <Amount>FILTERED</Amount>
1076
+ </Shipping>
1077
+ <IsFulfilledByAmazon>true</IsFulfilledByAmazon>
1078
+ <IsBuyBoxWinner>true</IsBuyBoxWinner>
1079
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
1080
+ </Offer>
1081
+ <Offer>
1082
+ <SubCondition>new</SubCondition>
1083
+ <SellerFeedbackRating>
1084
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
1085
+ <FeedbackCount>0</FeedbackCount>
1086
+ </SellerFeedbackRating>
1087
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1088
+ <ListingPrice>
1089
+ <CurrencyCode>EUR</CurrencyCode>
1090
+ <Amount>FILTERED</Amount>
1091
+ </ListingPrice>
1092
+ <Shipping>
1093
+ <CurrencyCode>EUR</CurrencyCode>
1094
+ <Amount>FILTERED</Amount>
1095
+ </Shipping>
1096
+ <ShipsFrom>
1097
+ <Country>IN</Country>
1098
+ </ShipsFrom>
1099
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1100
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1101
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
1102
+ </Offer>
1103
+ <Offer>
1104
+ <SubCondition>new</SubCondition>
1105
+ <SellerFeedbackRating>
1106
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
1107
+ <FeedbackCount>0</FeedbackCount>
1108
+ </SellerFeedbackRating>
1109
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1110
+ <ListingPrice>
1111
+ <CurrencyCode>EUR</CurrencyCode>
1112
+ <Amount>FILTERED</Amount>
1113
+ </ListingPrice>
1114
+ <Shipping>
1115
+ <CurrencyCode>EUR</CurrencyCode>
1116
+ <Amount>FILTERED</Amount>
1117
+ </Shipping>
1118
+ <ShipsFrom>
1119
+ <Country>IN</Country>
1120
+ </ShipsFrom>
1121
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1122
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1123
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
1124
+ </Offer>
1125
+ </Offers>
1126
+ </GetLowestPricedOffersForASINResult>
1127
+ <ResponseMetadata>
1128
+ <RequestId>593ab553-7add-4ec4-8b0e-312315da4d03</RequestId>
1129
+ </ResponseMetadata>
1130
+ </GetLowestPricedOffersForASINResponse>
1131
+ http_version:
1132
+ recorded_at: Sun, 29 Jan 2017 23:55:27 GMT
1133
+ - request:
1134
+ method: post
1135
+ uri: https://mws-eu.amazonservices.com/Products/2011-10-01
1136
+ body:
1137
+ encoding: UTF-8
1138
+ string: ASIN=1780935374&AWSAccessKeyId=FILTERED&Action=GetLowestPricedOffersForASIN&ItemCondition=New&MarketplaceId=A1F83G8C2ARO7P&SellerId=FILTERED&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2017-01-29T23%3A55%3A27Z&Version=2011-10-01&Signature=gMdMhRhNYOzNr8k1j7nc0N%2Bdm3DBppHMVod2I22A48g%3D
1139
+ headers:
1140
+ User-Agent:
1141
+ - Jeff/1.5.2 (Language=Ruby; Hakans-MacBook.home)
1142
+ Content-Type:
1143
+ - application/x-www-form-urlencoded; charset=UTF-8
1144
+ response:
1145
+ status:
1146
+ code: 200
1147
+ message:
1148
+ headers:
1149
+ Server:
1150
+ - Server
1151
+ Date:
1152
+ - Sun, 29 Jan 2017 23:55:27 GMT
1153
+ Content-Type:
1154
+ - application/xml
1155
+ Connection:
1156
+ - keep-alive
1157
+ x-mws-quota-max:
1158
+ - '200.0'
1159
+ x-mws-quota-remaining:
1160
+ - '200.0'
1161
+ x-mws-quota-resetsOn:
1162
+ - '2017-01-30T00:07:00.000Z'
1163
+ x-mws-request-id:
1164
+ - b25ccae3-98f0-47e2-9d27-980fc47d4758
1165
+ x-mws-timestamp:
1166
+ - '2017-01-29T23:55:26.984Z'
1167
+ x-mws-response-context:
1168
+ - ebtc2eRXFFT221lPDSNbhwNEqCwW6tLndfBaFCK7owOv4xoFrh88sJL/HJaXTxIB7Tx6TgsCHO0J
1169
+ sf874skPIA==
1170
+ Vary:
1171
+ - Accept-Encoding,User-Agent
1172
+ body:
1173
+ encoding: ASCII-8BIT
1174
+ string: |-
1175
+ <?xml version="1.0"?><GetLowestPricedOffersForASINResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
1176
+ <GetLowestPricedOffersForASINResult MarketplaceID="A1F83G8C2ARO7P" ItemCondition="New" ASIN="1780935374" status="Success">
1177
+ <Identifier>
1178
+ <MarketplaceId>A1F83G8C2ARO7P</MarketplaceId>
1179
+ <ASIN>1780935374</ASIN>
1180
+ <ItemCondition>New</ItemCondition>
1181
+ <TimeOfOfferChange>2017-01-29T23:14:31.585Z</TimeOfOfferChange>
1182
+ </Identifier>
1183
+ <Summary>
1184
+ <TotalOfferCount>27</TotalOfferCount>
1185
+ <NumberOfOffers>
1186
+ <OfferCount condition="used" fulfillmentChannel="Merchant">5</OfferCount>
1187
+ <OfferCount condition="new" fulfillmentChannel="Amazon">1</OfferCount>
1188
+ <OfferCount condition="new" fulfillmentChannel="Merchant">21</OfferCount>
1189
+ </NumberOfOffers>
1190
+ <LowestPrices>
1191
+ <LowestPrice condition="used" fulfillmentChannel="Merchant">
1192
+ <LandedPrice>
1193
+ <CurrencyCode>GBP</CurrencyCode>
1194
+ <Amount>FILTERED</Amount>
1195
+ </LandedPrice>
1196
+ <ListingPrice>
1197
+ <CurrencyCode>GBP</CurrencyCode>
1198
+ <Amount>FILTERED</Amount>
1199
+ </ListingPrice>
1200
+ <Shipping>
1201
+ <CurrencyCode>GBP</CurrencyCode>
1202
+ <Amount>FILTERED</Amount>
1203
+ </Shipping>
1204
+ </LowestPrice>
1205
+ <LowestPrice condition="new" fulfillmentChannel="Amazon">
1206
+ <LandedPrice>
1207
+ <CurrencyCode>GBP</CurrencyCode>
1208
+ <Amount>FILTERED</Amount>
1209
+ </LandedPrice>
1210
+ <ListingPrice>
1211
+ <CurrencyCode>GBP</CurrencyCode>
1212
+ <Amount>FILTERED</Amount>
1213
+ </ListingPrice>
1214
+ <Shipping>
1215
+ <CurrencyCode>GBP</CurrencyCode>
1216
+ <Amount>FILTERED</Amount>
1217
+ </Shipping>
1218
+ </LowestPrice>
1219
+ <LowestPrice condition="new" fulfillmentChannel="Merchant">
1220
+ <LandedPrice>
1221
+ <CurrencyCode>GBP</CurrencyCode>
1222
+ <Amount>FILTERED</Amount>
1223
+ </LandedPrice>
1224
+ <ListingPrice>
1225
+ <CurrencyCode>GBP</CurrencyCode>
1226
+ <Amount>FILTERED</Amount>
1227
+ </ListingPrice>
1228
+ <Shipping>
1229
+ <CurrencyCode>GBP</CurrencyCode>
1230
+ <Amount>FILTERED</Amount>
1231
+ </Shipping>
1232
+ </LowestPrice>
1233
+ </LowestPrices>
1234
+ <BuyBoxPrices>
1235
+ <BuyBoxPrice condition="New">
1236
+ <LandedPrice>
1237
+ <CurrencyCode>GBP</CurrencyCode>
1238
+ <Amount>FILTERED</Amount>
1239
+ </LandedPrice>
1240
+ <ListingPrice>
1241
+ <CurrencyCode>GBP</CurrencyCode>
1242
+ <Amount>FILTERED</Amount>
1243
+ </ListingPrice>
1244
+ <Shipping>
1245
+ <CurrencyCode>GBP</CurrencyCode>
1246
+ <Amount>FILTERED</Amount>
1247
+ </Shipping>
1248
+ </BuyBoxPrice>
1249
+ </BuyBoxPrices>
1250
+ <ListPrice>
1251
+ <CurrencyCode>GBP</CurrencyCode>
1252
+ <Amount>FILTERED</Amount>
1253
+ </ListPrice>
1254
+ <BuyBoxEligibleOffers>
1255
+ <OfferCount condition="used" fulfillmentChannel="Merchant">3</OfferCount>
1256
+ <OfferCount condition="new" fulfillmentChannel="Amazon">1</OfferCount>
1257
+ <OfferCount condition="new" fulfillmentChannel="Merchant">7</OfferCount>
1258
+ </BuyBoxEligibleOffers>
1259
+ </Summary>
1260
+ <Offers>
1261
+ <Offer>
1262
+ <SubCondition>new</SubCondition>
1263
+ <SellerFeedbackRating>
1264
+ <SellerPositiveFeedbackRating>95.0</SellerPositiveFeedbackRating>
1265
+ <FeedbackCount>150968</FeedbackCount>
1266
+ </SellerFeedbackRating>
1267
+ <ShippingTime minimumHours="48" maximumHours="72" availabilityType="NOW"/>
1268
+ <ListingPrice>
1269
+ <CurrencyCode>GBP</CurrencyCode>
1270
+ <Amount>FILTERED</Amount>
1271
+ </ListingPrice>
1272
+ <Shipping>
1273
+ <CurrencyCode>GBP</CurrencyCode>
1274
+ <Amount>FILTERED</Amount>
1275
+ </Shipping>
1276
+ <ShipsFrom>
1277
+ <Country>US</Country>
1278
+ </ShipsFrom>
1279
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1280
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1281
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
1282
+ </Offer>
1283
+ <Offer>
1284
+ <SubCondition>new</SubCondition>
1285
+ <SellerFeedbackRating>
1286
+ <SellerPositiveFeedbackRating>97.0</SellerPositiveFeedbackRating>
1287
+ <FeedbackCount>254073</FeedbackCount>
1288
+ </SellerFeedbackRating>
1289
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1290
+ <ListingPrice>
1291
+ <CurrencyCode>GBP</CurrencyCode>
1292
+ <Amount>FILTERED</Amount>
1293
+ </ListingPrice>
1294
+ <Shipping>
1295
+ <CurrencyCode>GBP</CurrencyCode>
1296
+ <Amount>FILTERED</Amount>
1297
+ </Shipping>
1298
+ <ShipsFrom>
1299
+ <Country>GB</Country>
1300
+ </ShipsFrom>
1301
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1302
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1303
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
1304
+ </Offer>
1305
+ <Offer>
1306
+ <SubCondition>new</SubCondition>
1307
+ <SellerFeedbackRating>
1308
+ <SellerPositiveFeedbackRating>94.0</SellerPositiveFeedbackRating>
1309
+ <FeedbackCount>173539</FeedbackCount>
1310
+ </SellerFeedbackRating>
1311
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1312
+ <ListingPrice>
1313
+ <CurrencyCode>GBP</CurrencyCode>
1314
+ <Amount>FILTERED</Amount>
1315
+ </ListingPrice>
1316
+ <Shipping>
1317
+ <CurrencyCode>GBP</CurrencyCode>
1318
+ <Amount>FILTERED</Amount>
1319
+ </Shipping>
1320
+ <ShipsFrom>
1321
+ <Country></Country>
1322
+ </ShipsFrom>
1323
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1324
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1325
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
1326
+ </Offer>
1327
+ <Offer>
1328
+ <SubCondition>new</SubCondition>
1329
+ <SellerFeedbackRating>
1330
+ <SellerPositiveFeedbackRating>97.0</SellerPositiveFeedbackRating>
1331
+ <FeedbackCount>4841</FeedbackCount>
1332
+ </SellerFeedbackRating>
1333
+ <ShippingTime minimumHours="48" maximumHours="72" availabilityType="NOW"/>
1334
+ <ListingPrice>
1335
+ <CurrencyCode>GBP</CurrencyCode>
1336
+ <Amount>FILTERED</Amount>
1337
+ </ListingPrice>
1338
+ <Shipping>
1339
+ <CurrencyCode>GBP</CurrencyCode>
1340
+ <Amount>FILTERED</Amount>
1341
+ </Shipping>
1342
+ <ShipsFrom>
1343
+ <Country>GB</Country>
1344
+ </ShipsFrom>
1345
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1346
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1347
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
1348
+ </Offer>
1349
+ <Offer>
1350
+ <SubCondition>new</SubCondition>
1351
+ <SellerFeedbackRating>
1352
+ <SellerPositiveFeedbackRating>91.0</SellerPositiveFeedbackRating>
1353
+ <FeedbackCount>4354</FeedbackCount>
1354
+ </SellerFeedbackRating>
1355
+ <ShippingTime minimumHours="48" maximumHours="72" availabilityType="NOW"/>
1356
+ <ListingPrice>
1357
+ <CurrencyCode>GBP</CurrencyCode>
1358
+ <Amount>FILTERED</Amount>
1359
+ </ListingPrice>
1360
+ <Shipping>
1361
+ <CurrencyCode>GBP</CurrencyCode>
1362
+ <Amount>FILTERED</Amount>
1363
+ </Shipping>
1364
+ <ShipsFrom>
1365
+ <Country></Country>
1366
+ </ShipsFrom>
1367
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1368
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1369
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
1370
+ </Offer>
1371
+ <Offer>
1372
+ <SubCondition>new</SubCondition>
1373
+ <SellerFeedbackRating>
1374
+ <SellerPositiveFeedbackRating>98.0</SellerPositiveFeedbackRating>
1375
+ <FeedbackCount>97744</FeedbackCount>
1376
+ </SellerFeedbackRating>
1377
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1378
+ <ListingPrice>
1379
+ <CurrencyCode>GBP</CurrencyCode>
1380
+ <Amount>FILTERED</Amount>
1381
+ </ListingPrice>
1382
+ <Shipping>
1383
+ <CurrencyCode>GBP</CurrencyCode>
1384
+ <Amount>FILTERED</Amount>
1385
+ </Shipping>
1386
+ <ShipsFrom>
1387
+ <Country>GB</Country>
1388
+ </ShipsFrom>
1389
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1390
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1391
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
1392
+ </Offer>
1393
+ <Offer>
1394
+ <SubCondition>new</SubCondition>
1395
+ <SellerFeedbackRating>
1396
+ <SellerPositiveFeedbackRating>99.0</SellerPositiveFeedbackRating>
1397
+ <FeedbackCount>2567</FeedbackCount>
1398
+ </SellerFeedbackRating>
1399
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1400
+ <ListingPrice>
1401
+ <CurrencyCode>GBP</CurrencyCode>
1402
+ <Amount>FILTERED</Amount>
1403
+ </ListingPrice>
1404
+ <Shipping>
1405
+ <CurrencyCode>GBP</CurrencyCode>
1406
+ <Amount>FILTERED</Amount>
1407
+ </Shipping>
1408
+ <ShipsFrom>
1409
+ <Country>GB</Country>
1410
+ </ShipsFrom>
1411
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1412
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1413
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
1414
+ </Offer>
1415
+ <Offer>
1416
+ <SubCondition>new</SubCondition>
1417
+ <SellerFeedbackRating>
1418
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
1419
+ <FeedbackCount>0</FeedbackCount>
1420
+ </SellerFeedbackRating>
1421
+ <ShippingTime minimumHours="0" maximumHours="0" availabilityType="NOW"/>
1422
+ <ListingPrice>
1423
+ <CurrencyCode>GBP</CurrencyCode>
1424
+ <Amount>FILTERED</Amount>
1425
+ </ListingPrice>
1426
+ <Shipping>
1427
+ <CurrencyCode>GBP</CurrencyCode>
1428
+ <Amount>FILTERED</Amount>
1429
+ </Shipping>
1430
+ <IsFulfilledByAmazon>true</IsFulfilledByAmazon>
1431
+ <IsBuyBoxWinner>true</IsBuyBoxWinner>
1432
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
1433
+ </Offer>
1434
+ <Offer>
1435
+ <SubCondition>new</SubCondition>
1436
+ <SellerFeedbackRating>
1437
+ <SellerPositiveFeedbackRating>95.0</SellerPositiveFeedbackRating>
1438
+ <FeedbackCount>23641</FeedbackCount>
1439
+ </SellerFeedbackRating>
1440
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1441
+ <ListingPrice>
1442
+ <CurrencyCode>GBP</CurrencyCode>
1443
+ <Amount>FILTERED</Amount>
1444
+ </ListingPrice>
1445
+ <Shipping>
1446
+ <CurrencyCode>GBP</CurrencyCode>
1447
+ <Amount>FILTERED</Amount>
1448
+ </Shipping>
1449
+ <ShipsFrom>
1450
+ <Country>GB</Country>
1451
+ </ShipsFrom>
1452
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1453
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1454
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
1455
+ </Offer>
1456
+ <Offer>
1457
+ <SubCondition>new</SubCondition>
1458
+ <SellerFeedbackRating>
1459
+ <SellerPositiveFeedbackRating>92.0</SellerPositiveFeedbackRating>
1460
+ <FeedbackCount>24453</FeedbackCount>
1461
+ </SellerFeedbackRating>
1462
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1463
+ <ListingPrice>
1464
+ <CurrencyCode>GBP</CurrencyCode>
1465
+ <Amount>FILTERED</Amount>
1466
+ </ListingPrice>
1467
+ <Shipping>
1468
+ <CurrencyCode>GBP</CurrencyCode>
1469
+ <Amount>FILTERED</Amount>
1470
+ </Shipping>
1471
+ <ShipsFrom>
1472
+ <Country>GB</Country>
1473
+ </ShipsFrom>
1474
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1475
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1476
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
1477
+ </Offer>
1478
+ <Offer>
1479
+ <SubCondition>new</SubCondition>
1480
+ <SellerFeedbackRating>
1481
+ <SellerPositiveFeedbackRating>94.0</SellerPositiveFeedbackRating>
1482
+ <FeedbackCount>21019</FeedbackCount>
1483
+ </SellerFeedbackRating>
1484
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1485
+ <ListingPrice>
1486
+ <CurrencyCode>GBP</CurrencyCode>
1487
+ <Amount>FILTERED</Amount>
1488
+ </ListingPrice>
1489
+ <Shipping>
1490
+ <CurrencyCode>GBP</CurrencyCode>
1491
+ <Amount>FILTERED</Amount>
1492
+ </Shipping>
1493
+ <ShipsFrom>
1494
+ <Country>IE</Country>
1495
+ </ShipsFrom>
1496
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1497
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1498
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
1499
+ </Offer>
1500
+ <Offer>
1501
+ <SubCondition>new</SubCondition>
1502
+ <SellerFeedbackRating>
1503
+ <SellerPositiveFeedbackRating>95.0</SellerPositiveFeedbackRating>
1504
+ <FeedbackCount>3405</FeedbackCount>
1505
+ </SellerFeedbackRating>
1506
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1507
+ <ListingPrice>
1508
+ <CurrencyCode>GBP</CurrencyCode>
1509
+ <Amount>FILTERED</Amount>
1510
+ </ListingPrice>
1511
+ <Shipping>
1512
+ <CurrencyCode>GBP</CurrencyCode>
1513
+ <Amount>FILTERED</Amount>
1514
+ </Shipping>
1515
+ <ShipsFrom>
1516
+ <Country>GB</Country>
1517
+ </ShipsFrom>
1518
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1519
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1520
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
1521
+ </Offer>
1522
+ <Offer>
1523
+ <SubCondition>new</SubCondition>
1524
+ <SellerFeedbackRating>
1525
+ <SellerPositiveFeedbackRating>94.0</SellerPositiveFeedbackRating>
1526
+ <FeedbackCount>34</FeedbackCount>
1527
+ </SellerFeedbackRating>
1528
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1529
+ <ListingPrice>
1530
+ <CurrencyCode>GBP</CurrencyCode>
1531
+ <Amount>FILTERED</Amount>
1532
+ </ListingPrice>
1533
+ <Shipping>
1534
+ <CurrencyCode>GBP</CurrencyCode>
1535
+ <Amount>FILTERED</Amount>
1536
+ </Shipping>
1537
+ <ShipsFrom>
1538
+ <Country></Country>
1539
+ </ShipsFrom>
1540
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1541
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1542
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
1543
+ </Offer>
1544
+ <Offer>
1545
+ <SubCondition>new</SubCondition>
1546
+ <SellerFeedbackRating>
1547
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
1548
+ <FeedbackCount>0</FeedbackCount>
1549
+ </SellerFeedbackRating>
1550
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1551
+ <ListingPrice>
1552
+ <CurrencyCode>GBP</CurrencyCode>
1553
+ <Amount>FILTERED</Amount>
1554
+ </ListingPrice>
1555
+ <Shipping>
1556
+ <CurrencyCode>GBP</CurrencyCode>
1557
+ <Amount>FILTERED</Amount>
1558
+ </Shipping>
1559
+ <ShipsFrom>
1560
+ <Country>IN</Country>
1561
+ </ShipsFrom>
1562
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1563
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1564
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
1565
+ </Offer>
1566
+ <Offer>
1567
+ <SubCondition>new</SubCondition>
1568
+ <SellerFeedbackRating>
1569
+ <SellerPositiveFeedbackRating>97.0</SellerPositiveFeedbackRating>
1570
+ <FeedbackCount>125136</FeedbackCount>
1571
+ </SellerFeedbackRating>
1572
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1573
+ <ListingPrice>
1574
+ <CurrencyCode>GBP</CurrencyCode>
1575
+ <Amount>FILTERED</Amount>
1576
+ </ListingPrice>
1577
+ <Shipping>
1578
+ <CurrencyCode>GBP</CurrencyCode>
1579
+ <Amount>FILTERED</Amount>
1580
+ </Shipping>
1581
+ <ShipsFrom>
1582
+ <Country>GB</Country>
1583
+ </ShipsFrom>
1584
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1585
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1586
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
1587
+ </Offer>
1588
+ <Offer>
1589
+ <SubCondition>new</SubCondition>
1590
+ <SellerFeedbackRating>
1591
+ <SellerPositiveFeedbackRating>94.0</SellerPositiveFeedbackRating>
1592
+ <FeedbackCount>13884</FeedbackCount>
1593
+ </SellerFeedbackRating>
1594
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1595
+ <ListingPrice>
1596
+ <CurrencyCode>GBP</CurrencyCode>
1597
+ <Amount>FILTERED</Amount>
1598
+ </ListingPrice>
1599
+ <Shipping>
1600
+ <CurrencyCode>GBP</CurrencyCode>
1601
+ <Amount>FILTERED</Amount>
1602
+ </Shipping>
1603
+ <ShipsFrom>
1604
+ <Country>DE</Country>
1605
+ </ShipsFrom>
1606
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1607
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1608
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
1609
+ </Offer>
1610
+ <Offer>
1611
+ <SubCondition>new</SubCondition>
1612
+ <SellerFeedbackRating>
1613
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
1614
+ <FeedbackCount>0</FeedbackCount>
1615
+ </SellerFeedbackRating>
1616
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1617
+ <ListingPrice>
1618
+ <CurrencyCode>GBP</CurrencyCode>
1619
+ <Amount>FILTERED</Amount>
1620
+ </ListingPrice>
1621
+ <Shipping>
1622
+ <CurrencyCode>GBP</CurrencyCode>
1623
+ <Amount>FILTERED</Amount>
1624
+ </Shipping>
1625
+ <ShipsFrom>
1626
+ <Country>IN</Country>
1627
+ </ShipsFrom>
1628
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1629
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1630
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
1631
+ </Offer>
1632
+ <Offer>
1633
+ <SubCondition>new</SubCondition>
1634
+ <SellerFeedbackRating>
1635
+ <SellerPositiveFeedbackRating>90.0</SellerPositiveFeedbackRating>
1636
+ <FeedbackCount>662</FeedbackCount>
1637
+ </SellerFeedbackRating>
1638
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1639
+ <ListingPrice>
1640
+ <CurrencyCode>GBP</CurrencyCode>
1641
+ <Amount>FILTERED</Amount>
1642
+ </ListingPrice>
1643
+ <Shipping>
1644
+ <CurrencyCode>GBP</CurrencyCode>
1645
+ <Amount>FILTERED</Amount>
1646
+ </Shipping>
1647
+ <ShipsFrom>
1648
+ <Country>DE</Country>
1649
+ </ShipsFrom>
1650
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1651
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1652
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
1653
+ </Offer>
1654
+ <Offer>
1655
+ <SubCondition>new</SubCondition>
1656
+ <SellerFeedbackRating>
1657
+ <SellerPositiveFeedbackRating>99.0</SellerPositiveFeedbackRating>
1658
+ <FeedbackCount>1921</FeedbackCount>
1659
+ </SellerFeedbackRating>
1660
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1661
+ <ListingPrice>
1662
+ <CurrencyCode>GBP</CurrencyCode>
1663
+ <Amount>FILTERED</Amount>
1664
+ </ListingPrice>
1665
+ <Shipping>
1666
+ <CurrencyCode>GBP</CurrencyCode>
1667
+ <Amount>FILTERED</Amount>
1668
+ </Shipping>
1669
+ <ShipsFrom>
1670
+ <Country>DE</Country>
1671
+ </ShipsFrom>
1672
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1673
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1674
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
1675
+ </Offer>
1676
+ <Offer>
1677
+ <SubCondition>new</SubCondition>
1678
+ <SellerFeedbackRating>
1679
+ <SellerPositiveFeedbackRating>94.0</SellerPositiveFeedbackRating>
1680
+ <FeedbackCount>2555</FeedbackCount>
1681
+ </SellerFeedbackRating>
1682
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1683
+ <ListingPrice>
1684
+ <CurrencyCode>GBP</CurrencyCode>
1685
+ <Amount>FILTERED</Amount>
1686
+ </ListingPrice>
1687
+ <Shipping>
1688
+ <CurrencyCode>GBP</CurrencyCode>
1689
+ <Amount>FILTERED</Amount>
1690
+ </Shipping>
1691
+ <ShipsFrom>
1692
+ <Country>DE</Country>
1693
+ </ShipsFrom>
1694
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1695
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1696
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
1697
+ </Offer>
1698
+ </Offers>
1699
+ </GetLowestPricedOffersForASINResult>
1700
+ <ResponseMetadata>
1701
+ <RequestId>b25ccae3-98f0-47e2-9d27-980fc47d4758</RequestId>
1702
+ </ResponseMetadata>
1703
+ </GetLowestPricedOffersForASINResponse>
1704
+ http_version:
1705
+ recorded_at: Sun, 29 Jan 2017 23:55:27 GMT
1706
+ - request:
1707
+ method: post
1708
+ uri: https://mws.amazonservices.jp/Products/2011-10-01
1709
+ body:
1710
+ encoding: UTF-8
1711
+ string: ASIN=1780935374&AWSAccessKeyId=FILTERED&Action=GetLowestPricedOffersForASIN&ItemCondition=New&MarketplaceId=A1VC38T7YXB528&SellerId=FILTERED&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2017-01-29T23%3A55%3A27Z&Version=2011-10-01&Signature=UaahepgMwkrScQBAurjnn8M9N2VKiIgqNoz18PGW6cQ%3D
1712
+ headers:
1713
+ User-Agent:
1714
+ - Jeff/1.5.2 (Language=Ruby; Hakans-MacBook.home)
1715
+ Content-Type:
1716
+ - application/x-www-form-urlencoded; charset=UTF-8
1717
+ response:
1718
+ status:
1719
+ code: 200
1720
+ message:
1721
+ headers:
1722
+ Server:
1723
+ - Server
1724
+ Date:
1725
+ - Sun, 29 Jan 2017 23:55:28 GMT
1726
+ Content-Type:
1727
+ - application/xml
1728
+ Content-Length:
1729
+ - '7192'
1730
+ Connection:
1731
+ - keep-alive
1732
+ x-mws-quota-max:
1733
+ - '200.0'
1734
+ x-mws-quota-remaining:
1735
+ - '200.0'
1736
+ x-mws-quota-resetsOn:
1737
+ - '2017-01-30T00:47:00.000Z'
1738
+ x-mws-request-id:
1739
+ - 608a6fb0-5815-4d8a-8ae8-9b68d23513f3
1740
+ x-mws-timestamp:
1741
+ - '2017-01-29T23:55:28.161Z'
1742
+ x-mws-response-context:
1743
+ - Y0Z6e1EWx+M8aFbYgYL5ULdEhQBDdpCmolRxVQoAfXb/fhrZlVKByYpMaaMr+t53RMiyg2v3n5Dq
1744
+ NIbJUoN0wg==
1745
+ Vary:
1746
+ - Accept-Encoding,User-Agent
1747
+ body:
1748
+ encoding: ASCII-8BIT
1749
+ string: |-
1750
+ <?xml version="1.0"?><GetLowestPricedOffersForASINResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
1751
+ <GetLowestPricedOffersForASINResult MarketplaceID="A1VC38T7YXB528" ItemCondition="New" ASIN="1780935374" status="Success">
1752
+ <Identifier>
1753
+ <MarketplaceId>A1VC38T7YXB528</MarketplaceId>
1754
+ <ASIN>1780935374</ASIN>
1755
+ <ItemCondition>New</ItemCondition>
1756
+ <TimeOfOfferChange>2017-01-28T02:24:29.094Z</TimeOfOfferChange>
1757
+ </Identifier>
1758
+ <Summary>
1759
+ <TotalOfferCount>4</TotalOfferCount>
1760
+ <NumberOfOffers>
1761
+ <OfferCount condition="used" fulfillmentChannel="Merchant">1</OfferCount>
1762
+ <OfferCount condition="new" fulfillmentChannel="Amazon">1</OfferCount>
1763
+ <OfferCount condition="new" fulfillmentChannel="Merchant">2</OfferCount>
1764
+ </NumberOfOffers>
1765
+ <LowestPrices>
1766
+ <LowestPrice condition="used" fulfillmentChannel="Merchant">
1767
+ <LandedPrice>
1768
+ <CurrencyCode>JPY</CurrencyCode>
1769
+ <Amount>FILTERED</Amount>
1770
+ </LandedPrice>
1771
+ <ListingPrice>
1772
+ <CurrencyCode>JPY</CurrencyCode>
1773
+ <Amount>FILTERED</Amount>
1774
+ </ListingPrice>
1775
+ <Shipping>
1776
+ <CurrencyCode>JPY</CurrencyCode>
1777
+ <Amount>FILTERED</Amount>
1778
+ </Shipping>
1779
+ </LowestPrice>
1780
+ <LowestPrice condition="new" fulfillmentChannel="Amazon">
1781
+ <LandedPrice>
1782
+ <CurrencyCode>JPY</CurrencyCode>
1783
+ <Amount>FILTERED</Amount>
1784
+ </LandedPrice>
1785
+ <ListingPrice>
1786
+ <CurrencyCode>JPY</CurrencyCode>
1787
+ <Amount>FILTERED</Amount>
1788
+ </ListingPrice>
1789
+ <Shipping>
1790
+ <CurrencyCode>JPY</CurrencyCode>
1791
+ <Amount>FILTERED</Amount>
1792
+ </Shipping>
1793
+ </LowestPrice>
1794
+ <LowestPrice condition="new" fulfillmentChannel="Merchant">
1795
+ <LandedPrice>
1796
+ <CurrencyCode>JPY</CurrencyCode>
1797
+ <Amount>FILTERED</Amount>
1798
+ </LandedPrice>
1799
+ <ListingPrice>
1800
+ <CurrencyCode>JPY</CurrencyCode>
1801
+ <Amount>FILTERED</Amount>
1802
+ </ListingPrice>
1803
+ <Shipping>
1804
+ <CurrencyCode>JPY</CurrencyCode>
1805
+ <Amount>FILTERED</Amount>
1806
+ </Shipping>
1807
+ </LowestPrice>
1808
+ </LowestPrices>
1809
+ <BuyBoxPrices>
1810
+ <BuyBoxPrice condition="New">
1811
+ <LandedPrice>
1812
+ <CurrencyCode>JPY</CurrencyCode>
1813
+ <Amount>FILTERED</Amount>
1814
+ </LandedPrice>
1815
+ <ListingPrice>
1816
+ <CurrencyCode>JPY</CurrencyCode>
1817
+ <Amount>FILTERED</Amount>
1818
+ </ListingPrice>
1819
+ <Shipping>
1820
+ <CurrencyCode>JPY</CurrencyCode>
1821
+ <Amount>FILTERED</Amount>
1822
+ </Shipping>
1823
+ </BuyBoxPrice>
1824
+ </BuyBoxPrices>
1825
+ <ListPrice>
1826
+ <CurrencyCode>JPY</CurrencyCode>
1827
+ <Amount>FILTERED</Amount>
1828
+ </ListPrice>
1829
+ <BuyBoxEligibleOffers>
1830
+ <OfferCount condition="used" fulfillmentChannel="Merchant">1</OfferCount>
1831
+ <OfferCount condition="new" fulfillmentChannel="Amazon">1</OfferCount>
1832
+ <OfferCount condition="new" fulfillmentChannel="Merchant">2</OfferCount>
1833
+ </BuyBoxEligibleOffers>
1834
+ </Summary>
1835
+ <Offers>
1836
+ <Offer>
1837
+ <SubCondition>new</SubCondition>
1838
+ <SellerFeedbackRating>
1839
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
1840
+ <FeedbackCount>0</FeedbackCount>
1841
+ </SellerFeedbackRating>
1842
+ <ShippingTime minimumHours="0" maximumHours="0" availabilityType="NOW"/>
1843
+ <ListingPrice>
1844
+ <CurrencyCode>JPY</CurrencyCode>
1845
+ <Amount>FILTERED</Amount>
1846
+ </ListingPrice>
1847
+ <Shipping>
1848
+ <CurrencyCode>JPY</CurrencyCode>
1849
+ <Amount>FILTERED</Amount>
1850
+ </Shipping>
1851
+ <IsFulfilledByAmazon>true</IsFulfilledByAmazon>
1852
+ <IsBuyBoxWinner>true</IsBuyBoxWinner>
1853
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
1854
+ </Offer>
1855
+ <Offer>
1856
+ <SubCondition>new</SubCondition>
1857
+ <SellerFeedbackRating>
1858
+ <SellerPositiveFeedbackRating>98.0</SellerPositiveFeedbackRating>
1859
+ <FeedbackCount>176</FeedbackCount>
1860
+ </SellerFeedbackRating>
1861
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1862
+ <ListingPrice>
1863
+ <CurrencyCode>JPY</CurrencyCode>
1864
+ <Amount>FILTERED</Amount>
1865
+ </ListingPrice>
1866
+ <Shipping>
1867
+ <CurrencyCode>JPY</CurrencyCode>
1868
+ <Amount>FILTERED</Amount>
1869
+ </Shipping>
1870
+ <ShipsFrom>
1871
+ <Country>GB</Country>
1872
+ </ShipsFrom>
1873
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1874
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1875
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
1876
+ </Offer>
1877
+ <Offer>
1878
+ <SubCondition>new</SubCondition>
1879
+ <SellerFeedbackRating>
1880
+ <SellerPositiveFeedbackRating>98.0</SellerPositiveFeedbackRating>
1881
+ <FeedbackCount>8397</FeedbackCount>
1882
+ </SellerFeedbackRating>
1883
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
1884
+ <ListingPrice>
1885
+ <CurrencyCode>JPY</CurrencyCode>
1886
+ <Amount>FILTERED</Amount>
1887
+ </ListingPrice>
1888
+ <Points>
1889
+ <PointsNumber>113</PointsNumber>
1890
+ </Points>
1891
+ <Shipping>
1892
+ <CurrencyCode>JPY</CurrencyCode>
1893
+ <Amount>FILTERED</Amount>
1894
+ </Shipping>
1895
+ <ShipsFrom>
1896
+ <Country>AT</Country>
1897
+ </ShipsFrom>
1898
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
1899
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
1900
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
1901
+ </Offer>
1902
+ </Offers>
1903
+ </GetLowestPricedOffersForASINResult>
1904
+ <ResponseMetadata>
1905
+ <RequestId>608a6fb0-5815-4d8a-8ae8-9b68d23513f3</RequestId>
1906
+ </ResponseMetadata>
1907
+ </GetLowestPricedOffersForASINResponse>
1908
+ http_version:
1909
+ recorded_at: Sun, 29 Jan 2017 23:55:28 GMT
1910
+ - request:
1911
+ method: post
1912
+ uri: https://mws-eu.amazonservices.com/Products/2011-10-01
1913
+ body:
1914
+ encoding: UTF-8
1915
+ string: ASIN=1780935374&AWSAccessKeyId=FILTERED&Action=GetLowestPricedOffersForASIN&ItemCondition=New&MarketplaceId=A1PA6795UKMFR9&SellerId=FILTERED&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2017-01-29T23%3A55%3A28Z&Version=2011-10-01&Signature=hty1wQJHasp6bveR009ayVlpcnzD2fwBqpL8qsVgZdY%3D
1916
+ headers:
1917
+ User-Agent:
1918
+ - Jeff/1.5.2 (Language=Ruby; Hakans-MacBook.home)
1919
+ Content-Type:
1920
+ - application/x-www-form-urlencoded; charset=UTF-8
1921
+ response:
1922
+ status:
1923
+ code: 200
1924
+ message:
1925
+ headers:
1926
+ Server:
1927
+ - Server
1928
+ Date:
1929
+ - Sun, 29 Jan 2017 23:55:28 GMT
1930
+ Content-Type:
1931
+ - application/xml
1932
+ Connection:
1933
+ - keep-alive
1934
+ x-mws-quota-max:
1935
+ - '200.0'
1936
+ x-mws-quota-remaining:
1937
+ - '200.0'
1938
+ x-mws-quota-resetsOn:
1939
+ - '2017-01-30T00:19:00.000Z'
1940
+ x-mws-request-id:
1941
+ - db909c69-263e-4a95-be68-ee4c9aca61a4
1942
+ x-mws-timestamp:
1943
+ - '2017-01-29T23:55:28.737Z'
1944
+ x-mws-response-context:
1945
+ - qvi1zXM/Xdewz9jdRhaXv9rCFSGlVQTjwkL+uN10/G31vIv7MnFYPhjol6E6ahdchZuEUaA/lEcy
1946
+ tKiJd9hS8Q==
1947
+ Vary:
1948
+ - Accept-Encoding,User-Agent
1949
+ body:
1950
+ encoding: ASCII-8BIT
1951
+ string: |-
1952
+ <?xml version="1.0"?><GetLowestPricedOffersForASINResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
1953
+ <GetLowestPricedOffersForASINResult MarketplaceID="A1PA6795UKMFR9" ItemCondition="New" ASIN="1780935374" status="Success">
1954
+ <Identifier>
1955
+ <MarketplaceId>A1PA6795UKMFR9</MarketplaceId>
1956
+ <ASIN>1780935374</ASIN>
1957
+ <ItemCondition>New</ItemCondition>
1958
+ <TimeOfOfferChange>2017-01-29T19:13:40.141Z</TimeOfOfferChange>
1959
+ </Identifier>
1960
+ <Summary>
1961
+ <TotalOfferCount>26</TotalOfferCount>
1962
+ <NumberOfOffers>
1963
+ <OfferCount condition="used" fulfillmentChannel="Merchant">2</OfferCount>
1964
+ <OfferCount condition="new" fulfillmentChannel="Amazon">1</OfferCount>
1965
+ <OfferCount condition="new" fulfillmentChannel="Merchant">23</OfferCount>
1966
+ </NumberOfOffers>
1967
+ <LowestPrices>
1968
+ <LowestPrice condition="used" fulfillmentChannel="Merchant">
1969
+ <LandedPrice>
1970
+ <CurrencyCode>EUR</CurrencyCode>
1971
+ <Amount>FILTERED</Amount>
1972
+ </LandedPrice>
1973
+ <ListingPrice>
1974
+ <CurrencyCode>EUR</CurrencyCode>
1975
+ <Amount>FILTERED</Amount>
1976
+ </ListingPrice>
1977
+ <Shipping>
1978
+ <CurrencyCode>EUR</CurrencyCode>
1979
+ <Amount>FILTERED</Amount>
1980
+ </Shipping>
1981
+ </LowestPrice>
1982
+ <LowestPrice condition="new" fulfillmentChannel="Amazon">
1983
+ <LandedPrice>
1984
+ <CurrencyCode>EUR</CurrencyCode>
1985
+ <Amount>FILTERED</Amount>
1986
+ </LandedPrice>
1987
+ <ListingPrice>
1988
+ <CurrencyCode>EUR</CurrencyCode>
1989
+ <Amount>FILTERED</Amount>
1990
+ </ListingPrice>
1991
+ <Shipping>
1992
+ <CurrencyCode>EUR</CurrencyCode>
1993
+ <Amount>FILTERED</Amount>
1994
+ </Shipping>
1995
+ </LowestPrice>
1996
+ <LowestPrice condition="new" fulfillmentChannel="Merchant">
1997
+ <LandedPrice>
1998
+ <CurrencyCode>EUR</CurrencyCode>
1999
+ <Amount>FILTERED</Amount>
2000
+ </LandedPrice>
2001
+ <ListingPrice>
2002
+ <CurrencyCode>EUR</CurrencyCode>
2003
+ <Amount>FILTERED</Amount>
2004
+ </ListingPrice>
2005
+ <Shipping>
2006
+ <CurrencyCode>EUR</CurrencyCode>
2007
+ <Amount>FILTERED</Amount>
2008
+ </Shipping>
2009
+ </LowestPrice>
2010
+ </LowestPrices>
2011
+ <BuyBoxPrices>
2012
+ <BuyBoxPrice condition="New">
2013
+ <LandedPrice>
2014
+ <CurrencyCode>EUR</CurrencyCode>
2015
+ <Amount>FILTERED</Amount>
2016
+ </LandedPrice>
2017
+ <ListingPrice>
2018
+ <CurrencyCode>EUR</CurrencyCode>
2019
+ <Amount>FILTERED</Amount>
2020
+ </ListingPrice>
2021
+ <Shipping>
2022
+ <CurrencyCode>EUR</CurrencyCode>
2023
+ <Amount>FILTERED</Amount>
2024
+ </Shipping>
2025
+ </BuyBoxPrice>
2026
+ </BuyBoxPrices>
2027
+ <ListPrice>
2028
+ <CurrencyCode>EUR</CurrencyCode>
2029
+ <Amount>FILTERED</Amount>
2030
+ </ListPrice>
2031
+ <BuyBoxEligibleOffers>
2032
+ <OfferCount condition="used" fulfillmentChannel="Merchant">1</OfferCount>
2033
+ <OfferCount condition="new" fulfillmentChannel="Amazon">1</OfferCount>
2034
+ <OfferCount condition="new" fulfillmentChannel="Merchant">20</OfferCount>
2035
+ </BuyBoxEligibleOffers>
2036
+ </Summary>
2037
+ <Offers>
2038
+ <Offer>
2039
+ <SubCondition>new</SubCondition>
2040
+ <SellerFeedbackRating>
2041
+ <SellerPositiveFeedbackRating>96.0</SellerPositiveFeedbackRating>
2042
+ <FeedbackCount>1861</FeedbackCount>
2043
+ </SellerFeedbackRating>
2044
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2045
+ <ListingPrice>
2046
+ <CurrencyCode>EUR</CurrencyCode>
2047
+ <Amount>FILTERED</Amount>
2048
+ </ListingPrice>
2049
+ <Shipping>
2050
+ <CurrencyCode>EUR</CurrencyCode>
2051
+ <Amount>FILTERED</Amount>
2052
+ </Shipping>
2053
+ <ShipsFrom>
2054
+ <Country>US</Country>
2055
+ </ShipsFrom>
2056
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2057
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2058
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2059
+ </Offer>
2060
+ <Offer>
2061
+ <SubCondition>new</SubCondition>
2062
+ <SellerFeedbackRating>
2063
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
2064
+ <FeedbackCount>0</FeedbackCount>
2065
+ </SellerFeedbackRating>
2066
+ <ShippingTime minimumHours="0" maximumHours="0" availabilityType="NOW"/>
2067
+ <ListingPrice>
2068
+ <CurrencyCode>EUR</CurrencyCode>
2069
+ <Amount>FILTERED</Amount>
2070
+ </ListingPrice>
2071
+ <Shipping>
2072
+ <CurrencyCode>EUR</CurrencyCode>
2073
+ <Amount>FILTERED</Amount>
2074
+ </Shipping>
2075
+ <IsFulfilledByAmazon>true</IsFulfilledByAmazon>
2076
+ <IsBuyBoxWinner>true</IsBuyBoxWinner>
2077
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2078
+ </Offer>
2079
+ <Offer>
2080
+ <SubCondition>new</SubCondition>
2081
+ <SellerFeedbackRating>
2082
+ <SellerPositiveFeedbackRating>98.0</SellerPositiveFeedbackRating>
2083
+ <FeedbackCount>349</FeedbackCount>
2084
+ </SellerFeedbackRating>
2085
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2086
+ <ListingPrice>
2087
+ <CurrencyCode>EUR</CurrencyCode>
2088
+ <Amount>FILTERED</Amount>
2089
+ </ListingPrice>
2090
+ <Shipping>
2091
+ <CurrencyCode>EUR</CurrencyCode>
2092
+ <Amount>FILTERED</Amount>
2093
+ </Shipping>
2094
+ <ShipsFrom>
2095
+ <Country>GB</Country>
2096
+ </ShipsFrom>
2097
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2098
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2099
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2100
+ </Offer>
2101
+ <Offer>
2102
+ <SubCondition>new</SubCondition>
2103
+ <SellerFeedbackRating>
2104
+ <SellerPositiveFeedbackRating>99.0</SellerPositiveFeedbackRating>
2105
+ <FeedbackCount>1327</FeedbackCount>
2106
+ </SellerFeedbackRating>
2107
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2108
+ <ListingPrice>
2109
+ <CurrencyCode>EUR</CurrencyCode>
2110
+ <Amount>FILTERED</Amount>
2111
+ </ListingPrice>
2112
+ <Shipping>
2113
+ <CurrencyCode>EUR</CurrencyCode>
2114
+ <Amount>FILTERED</Amount>
2115
+ </Shipping>
2116
+ <ShipsFrom>
2117
+ <Country></Country>
2118
+ </ShipsFrom>
2119
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2120
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2121
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2122
+ </Offer>
2123
+ <Offer>
2124
+ <SubCondition>new</SubCondition>
2125
+ <SellerFeedbackRating>
2126
+ <SellerPositiveFeedbackRating>98.0</SellerPositiveFeedbackRating>
2127
+ <FeedbackCount>9635</FeedbackCount>
2128
+ </SellerFeedbackRating>
2129
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2130
+ <ListingPrice>
2131
+ <CurrencyCode>EUR</CurrencyCode>
2132
+ <Amount>FILTERED</Amount>
2133
+ </ListingPrice>
2134
+ <Shipping>
2135
+ <CurrencyCode>EUR</CurrencyCode>
2136
+ <Amount>FILTERED</Amount>
2137
+ </Shipping>
2138
+ <ShipsFrom>
2139
+ <Country></Country>
2140
+ </ShipsFrom>
2141
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2142
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2143
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2144
+ </Offer>
2145
+ <Offer>
2146
+ <SubCondition>new</SubCondition>
2147
+ <SellerFeedbackRating>
2148
+ <SellerPositiveFeedbackRating>98.0</SellerPositiveFeedbackRating>
2149
+ <FeedbackCount>33550</FeedbackCount>
2150
+ </SellerFeedbackRating>
2151
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2152
+ <ListingPrice>
2153
+ <CurrencyCode>EUR</CurrencyCode>
2154
+ <Amount>FILTERED</Amount>
2155
+ </ListingPrice>
2156
+ <Shipping>
2157
+ <CurrencyCode>EUR</CurrencyCode>
2158
+ <Amount>FILTERED</Amount>
2159
+ </Shipping>
2160
+ <ShipsFrom>
2161
+ <Country>DE</Country>
2162
+ </ShipsFrom>
2163
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2164
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2165
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2166
+ </Offer>
2167
+ <Offer>
2168
+ <SubCondition>new</SubCondition>
2169
+ <SellerFeedbackRating>
2170
+ <SellerPositiveFeedbackRating>94.0</SellerPositiveFeedbackRating>
2171
+ <FeedbackCount>3581</FeedbackCount>
2172
+ </SellerFeedbackRating>
2173
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2174
+ <ListingPrice>
2175
+ <CurrencyCode>EUR</CurrencyCode>
2176
+ <Amount>FILTERED</Amount>
2177
+ </ListingPrice>
2178
+ <Shipping>
2179
+ <CurrencyCode>EUR</CurrencyCode>
2180
+ <Amount>FILTERED</Amount>
2181
+ </Shipping>
2182
+ <ShipsFrom>
2183
+ <Country>IE</Country>
2184
+ </ShipsFrom>
2185
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2186
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2187
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
2188
+ </Offer>
2189
+ <Offer>
2190
+ <SubCondition>new</SubCondition>
2191
+ <SellerFeedbackRating>
2192
+ <SellerPositiveFeedbackRating>99.0</SellerPositiveFeedbackRating>
2193
+ <FeedbackCount>3699</FeedbackCount>
2194
+ </SellerFeedbackRating>
2195
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2196
+ <ListingPrice>
2197
+ <CurrencyCode>EUR</CurrencyCode>
2198
+ <Amount>FILTERED</Amount>
2199
+ </ListingPrice>
2200
+ <Shipping>
2201
+ <CurrencyCode>EUR</CurrencyCode>
2202
+ <Amount>FILTERED</Amount>
2203
+ </Shipping>
2204
+ <ShipsFrom>
2205
+ <Country>DE</Country>
2206
+ </ShipsFrom>
2207
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2208
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2209
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2210
+ </Offer>
2211
+ <Offer>
2212
+ <SubCondition>new</SubCondition>
2213
+ <SellerFeedbackRating>
2214
+ <SellerPositiveFeedbackRating>96.0</SellerPositiveFeedbackRating>
2215
+ <FeedbackCount>1370</FeedbackCount>
2216
+ </SellerFeedbackRating>
2217
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2218
+ <ListingPrice>
2219
+ <CurrencyCode>EUR</CurrencyCode>
2220
+ <Amount>FILTERED</Amount>
2221
+ </ListingPrice>
2222
+ <Shipping>
2223
+ <CurrencyCode>EUR</CurrencyCode>
2224
+ <Amount>FILTERED</Amount>
2225
+ </Shipping>
2226
+ <ShipsFrom>
2227
+ <Country>DE</Country>
2228
+ </ShipsFrom>
2229
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2230
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2231
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2232
+ </Offer>
2233
+ <Offer>
2234
+ <SubCondition>new</SubCondition>
2235
+ <SellerFeedbackRating>
2236
+ <SellerPositiveFeedbackRating>99.0</SellerPositiveFeedbackRating>
2237
+ <FeedbackCount>4272</FeedbackCount>
2238
+ </SellerFeedbackRating>
2239
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2240
+ <ListingPrice>
2241
+ <CurrencyCode>EUR</CurrencyCode>
2242
+ <Amount>FILTERED</Amount>
2243
+ </ListingPrice>
2244
+ <Shipping>
2245
+ <CurrencyCode>EUR</CurrencyCode>
2246
+ <Amount>FILTERED</Amount>
2247
+ </Shipping>
2248
+ <ShipsFrom>
2249
+ <Country>DE</Country>
2250
+ </ShipsFrom>
2251
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2252
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2253
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2254
+ </Offer>
2255
+ <Offer>
2256
+ <SubCondition>new</SubCondition>
2257
+ <SellerFeedbackRating>
2258
+ <SellerPositiveFeedbackRating>99.0</SellerPositiveFeedbackRating>
2259
+ <FeedbackCount>477</FeedbackCount>
2260
+ </SellerFeedbackRating>
2261
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2262
+ <ListingPrice>
2263
+ <CurrencyCode>EUR</CurrencyCode>
2264
+ <Amount>FILTERED</Amount>
2265
+ </ListingPrice>
2266
+ <Shipping>
2267
+ <CurrencyCode>EUR</CurrencyCode>
2268
+ <Amount>FILTERED</Amount>
2269
+ </Shipping>
2270
+ <ShipsFrom>
2271
+ <Country>DE</Country>
2272
+ </ShipsFrom>
2273
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2274
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2275
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2276
+ </Offer>
2277
+ <Offer>
2278
+ <SubCondition>new</SubCondition>
2279
+ <SellerFeedbackRating>
2280
+ <SellerPositiveFeedbackRating>97.0</SellerPositiveFeedbackRating>
2281
+ <FeedbackCount>343</FeedbackCount>
2282
+ </SellerFeedbackRating>
2283
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2284
+ <ListingPrice>
2285
+ <CurrencyCode>EUR</CurrencyCode>
2286
+ <Amount>FILTERED</Amount>
2287
+ </ListingPrice>
2288
+ <Shipping>
2289
+ <CurrencyCode>EUR</CurrencyCode>
2290
+ <Amount>FILTERED</Amount>
2291
+ </Shipping>
2292
+ <ShipsFrom>
2293
+ <Country>DE</Country>
2294
+ </ShipsFrom>
2295
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2296
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2297
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2298
+ </Offer>
2299
+ <Offer>
2300
+ <SubCondition>new</SubCondition>
2301
+ <SellerFeedbackRating>
2302
+ <SellerPositiveFeedbackRating>98.0</SellerPositiveFeedbackRating>
2303
+ <FeedbackCount>3099</FeedbackCount>
2304
+ </SellerFeedbackRating>
2305
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2306
+ <ListingPrice>
2307
+ <CurrencyCode>EUR</CurrencyCode>
2308
+ <Amount>FILTERED</Amount>
2309
+ </ListingPrice>
2310
+ <Shipping>
2311
+ <CurrencyCode>EUR</CurrencyCode>
2312
+ <Amount>FILTERED</Amount>
2313
+ </Shipping>
2314
+ <ShipsFrom>
2315
+ <Country>DE</Country>
2316
+ </ShipsFrom>
2317
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2318
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2319
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2320
+ </Offer>
2321
+ <Offer>
2322
+ <SubCondition>new</SubCondition>
2323
+ <SellerFeedbackRating>
2324
+ <SellerPositiveFeedbackRating>99.0</SellerPositiveFeedbackRating>
2325
+ <FeedbackCount>1457</FeedbackCount>
2326
+ </SellerFeedbackRating>
2327
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2328
+ <ListingPrice>
2329
+ <CurrencyCode>EUR</CurrencyCode>
2330
+ <Amount>FILTERED</Amount>
2331
+ </ListingPrice>
2332
+ <Shipping>
2333
+ <CurrencyCode>EUR</CurrencyCode>
2334
+ <Amount>FILTERED</Amount>
2335
+ </Shipping>
2336
+ <ShipsFrom>
2337
+ <Country>DE</Country>
2338
+ </ShipsFrom>
2339
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2340
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2341
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2342
+ </Offer>
2343
+ <Offer>
2344
+ <SubCondition>new</SubCondition>
2345
+ <SellerFeedbackRating>
2346
+ <SellerPositiveFeedbackRating>99.0</SellerPositiveFeedbackRating>
2347
+ <FeedbackCount>937</FeedbackCount>
2348
+ </SellerFeedbackRating>
2349
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2350
+ <ListingPrice>
2351
+ <CurrencyCode>EUR</CurrencyCode>
2352
+ <Amount>FILTERED</Amount>
2353
+ </ListingPrice>
2354
+ <Shipping>
2355
+ <CurrencyCode>EUR</CurrencyCode>
2356
+ <Amount>FILTERED</Amount>
2357
+ </Shipping>
2358
+ <ShipsFrom>
2359
+ <Country>DE</Country>
2360
+ </ShipsFrom>
2361
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2362
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2363
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2364
+ </Offer>
2365
+ <Offer>
2366
+ <SubCondition>new</SubCondition>
2367
+ <SellerFeedbackRating>
2368
+ <SellerPositiveFeedbackRating>98.0</SellerPositiveFeedbackRating>
2369
+ <FeedbackCount>65259</FeedbackCount>
2370
+ </SellerFeedbackRating>
2371
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2372
+ <ListingPrice>
2373
+ <CurrencyCode>EUR</CurrencyCode>
2374
+ <Amount>FILTERED</Amount>
2375
+ </ListingPrice>
2376
+ <Shipping>
2377
+ <CurrencyCode>EUR</CurrencyCode>
2378
+ <Amount>FILTERED</Amount>
2379
+ </Shipping>
2380
+ <ShipsFrom>
2381
+ <Country>DE</Country>
2382
+ </ShipsFrom>
2383
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2384
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2385
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2386
+ </Offer>
2387
+ <Offer>
2388
+ <SubCondition>new</SubCondition>
2389
+ <SellerFeedbackRating>
2390
+ <SellerPositiveFeedbackRating>98.0</SellerPositiveFeedbackRating>
2391
+ <FeedbackCount>49590</FeedbackCount>
2392
+ </SellerFeedbackRating>
2393
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2394
+ <ListingPrice>
2395
+ <CurrencyCode>EUR</CurrencyCode>
2396
+ <Amount>FILTERED</Amount>
2397
+ </ListingPrice>
2398
+ <Shipping>
2399
+ <CurrencyCode>EUR</CurrencyCode>
2400
+ <Amount>FILTERED</Amount>
2401
+ </Shipping>
2402
+ <ShipsFrom>
2403
+ <Country>DE</Country>
2404
+ </ShipsFrom>
2405
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2406
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2407
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2408
+ </Offer>
2409
+ <Offer>
2410
+ <SubCondition>new</SubCondition>
2411
+ <SellerFeedbackRating>
2412
+ <SellerPositiveFeedbackRating>100.0</SellerPositiveFeedbackRating>
2413
+ <FeedbackCount>151355</FeedbackCount>
2414
+ </SellerFeedbackRating>
2415
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2416
+ <ListingPrice>
2417
+ <CurrencyCode>EUR</CurrencyCode>
2418
+ <Amount>FILTERED</Amount>
2419
+ </ListingPrice>
2420
+ <Shipping>
2421
+ <CurrencyCode>EUR</CurrencyCode>
2422
+ <Amount>FILTERED</Amount>
2423
+ </Shipping>
2424
+ <ShipsFrom>
2425
+ <Country>DE</Country>
2426
+ </ShipsFrom>
2427
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2428
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2429
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2430
+ </Offer>
2431
+ <Offer>
2432
+ <SubCondition>new</SubCondition>
2433
+ <SellerFeedbackRating>
2434
+ <SellerPositiveFeedbackRating>96.0</SellerPositiveFeedbackRating>
2435
+ <FeedbackCount>1749</FeedbackCount>
2436
+ </SellerFeedbackRating>
2437
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2438
+ <ListingPrice>
2439
+ <CurrencyCode>EUR</CurrencyCode>
2440
+ <Amount>FILTERED</Amount>
2441
+ </ListingPrice>
2442
+ <Shipping>
2443
+ <CurrencyCode>EUR</CurrencyCode>
2444
+ <Amount>FILTERED</Amount>
2445
+ </Shipping>
2446
+ <ShipsFrom>
2447
+ <Country>DE</Country>
2448
+ </ShipsFrom>
2449
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2450
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2451
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2452
+ </Offer>
2453
+ <Offer>
2454
+ <SubCondition>new</SubCondition>
2455
+ <SellerFeedbackRating>
2456
+ <SellerPositiveFeedbackRating>99.0</SellerPositiveFeedbackRating>
2457
+ <FeedbackCount>511</FeedbackCount>
2458
+ </SellerFeedbackRating>
2459
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2460
+ <ListingPrice>
2461
+ <CurrencyCode>EUR</CurrencyCode>
2462
+ <Amount>FILTERED</Amount>
2463
+ </ListingPrice>
2464
+ <Shipping>
2465
+ <CurrencyCode>EUR</CurrencyCode>
2466
+ <Amount>FILTERED</Amount>
2467
+ </Shipping>
2468
+ <ShipsFrom>
2469
+ <Country>DE</Country>
2470
+ </ShipsFrom>
2471
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2472
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2473
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2474
+ </Offer>
2475
+ </Offers>
2476
+ </GetLowestPricedOffersForASINResult>
2477
+ <ResponseMetadata>
2478
+ <RequestId>db909c69-263e-4a95-be68-ee4c9aca61a4</RequestId>
2479
+ </ResponseMetadata>
2480
+ </GetLowestPricedOffersForASINResponse>
2481
+ http_version:
2482
+ recorded_at: Sun, 29 Jan 2017 23:55:29 GMT
2483
+ - request:
2484
+ method: post
2485
+ uri: https://mws.amazonservices.com/Products/2011-10-01
2486
+ body:
2487
+ encoding: UTF-8
2488
+ string: ASIN=1780935374&AWSAccessKeyId=FILTERED&Action=GetLowestPricedOffersForASIN&ItemCondition=New&MarketplaceId=ATVPDKIKX0DER&SellerId=FILTERED&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2017-01-29T23%3A55%3A29Z&Version=2011-10-01&Signature=y7VIYln%2BjIJFEDukZY0v3b1%2FwLAJCrGVNb%2BFfoxy2xg%3D
2489
+ headers:
2490
+ User-Agent:
2491
+ - Jeff/1.5.2 (Language=Ruby; Hakans-MacBook.home)
2492
+ Content-Type:
2493
+ - application/x-www-form-urlencoded; charset=UTF-8
2494
+ response:
2495
+ status:
2496
+ code: 200
2497
+ message:
2498
+ headers:
2499
+ Server:
2500
+ - Server
2501
+ Date:
2502
+ - Sun, 29 Jan 2017 23:55:29 GMT
2503
+ Content-Type:
2504
+ - application/xml
2505
+ Connection:
2506
+ - keep-alive
2507
+ x-mws-quota-max:
2508
+ - '200.0'
2509
+ x-mws-quota-remaining:
2510
+ - '200.0'
2511
+ x-mws-quota-resetsOn:
2512
+ - '2017-01-30T00:20:00.000Z'
2513
+ x-mws-request-id:
2514
+ - f0f3d790-1642-458d-88e5-baead9088283
2515
+ x-mws-timestamp:
2516
+ - '2017-01-29T23:55:29.196Z'
2517
+ x-mws-response-context:
2518
+ - vQbslqXCRZXoiIpAxluQ6sM7q3kDeSmOet8WJtOJk/M9EuDJT/NjgbLerUcxm9j+eq/fKSVk2ZDm
2519
+ KstzlPC0kA==
2520
+ Vary:
2521
+ - Accept-Encoding,User-Agent
2522
+ body:
2523
+ encoding: ASCII-8BIT
2524
+ string: |-
2525
+ <?xml version="1.0"?><GetLowestPricedOffersForASINResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
2526
+ <GetLowestPricedOffersForASINResult MarketplaceID="ATVPDKIKX0DER" ItemCondition="New" ASIN="1780935374" status="Success">
2527
+ <Identifier>
2528
+ <MarketplaceId>ATVPDKIKX0DER</MarketplaceId>
2529
+ <ASIN>1780935374</ASIN>
2530
+ <ItemCondition>New</ItemCondition>
2531
+ <TimeOfOfferChange>2017-01-29T22:41:05.613Z</TimeOfOfferChange>
2532
+ </Identifier>
2533
+ <Summary>
2534
+ <TotalOfferCount>23</TotalOfferCount>
2535
+ <NumberOfOffers>
2536
+ <OfferCount condition="used" fulfillmentChannel="Merchant">8</OfferCount>
2537
+ <OfferCount condition="new" fulfillmentChannel="Amazon">1</OfferCount>
2538
+ <OfferCount condition="new" fulfillmentChannel="Merchant">14</OfferCount>
2539
+ </NumberOfOffers>
2540
+ <LowestPrices>
2541
+ <LowestPrice condition="used" fulfillmentChannel="Merchant">
2542
+ <LandedPrice>
2543
+ <CurrencyCode>USD</CurrencyCode>
2544
+ <Amount>FILTERED</Amount>
2545
+ </LandedPrice>
2546
+ <ListingPrice>
2547
+ <CurrencyCode>USD</CurrencyCode>
2548
+ <Amount>FILTERED</Amount>
2549
+ </ListingPrice>
2550
+ <Shipping>
2551
+ <CurrencyCode>USD</CurrencyCode>
2552
+ <Amount>FILTERED</Amount>
2553
+ </Shipping>
2554
+ </LowestPrice>
2555
+ <LowestPrice condition="new" fulfillmentChannel="Amazon">
2556
+ <LandedPrice>
2557
+ <CurrencyCode>USD</CurrencyCode>
2558
+ <Amount>FILTERED</Amount>
2559
+ </LandedPrice>
2560
+ <ListingPrice>
2561
+ <CurrencyCode>USD</CurrencyCode>
2562
+ <Amount>FILTERED</Amount>
2563
+ </ListingPrice>
2564
+ <Shipping>
2565
+ <CurrencyCode>USD</CurrencyCode>
2566
+ <Amount>FILTERED</Amount>
2567
+ </Shipping>
2568
+ </LowestPrice>
2569
+ <LowestPrice condition="new" fulfillmentChannel="Merchant">
2570
+ <LandedPrice>
2571
+ <CurrencyCode>USD</CurrencyCode>
2572
+ <Amount>FILTERED</Amount>
2573
+ </LandedPrice>
2574
+ <ListingPrice>
2575
+ <CurrencyCode>USD</CurrencyCode>
2576
+ <Amount>FILTERED</Amount>
2577
+ </ListingPrice>
2578
+ <Shipping>
2579
+ <CurrencyCode>USD</CurrencyCode>
2580
+ <Amount>FILTERED</Amount>
2581
+ </Shipping>
2582
+ </LowestPrice>
2583
+ </LowestPrices>
2584
+ <BuyBoxPrices>
2585
+ <BuyBoxPrice condition="New">
2586
+ <LandedPrice>
2587
+ <CurrencyCode>USD</CurrencyCode>
2588
+ <Amount>FILTERED</Amount>
2589
+ </LandedPrice>
2590
+ <ListingPrice>
2591
+ <CurrencyCode>USD</CurrencyCode>
2592
+ <Amount>FILTERED</Amount>
2593
+ </ListingPrice>
2594
+ <Shipping>
2595
+ <CurrencyCode>USD</CurrencyCode>
2596
+ <Amount>FILTERED</Amount>
2597
+ </Shipping>
2598
+ </BuyBoxPrice>
2599
+ <BuyBoxPrice condition="Used">
2600
+ <LandedPrice>
2601
+ <CurrencyCode>USD</CurrencyCode>
2602
+ <Amount>FILTERED</Amount>
2603
+ </LandedPrice>
2604
+ <ListingPrice>
2605
+ <CurrencyCode>USD</CurrencyCode>
2606
+ <Amount>FILTERED</Amount>
2607
+ </ListingPrice>
2608
+ <Shipping>
2609
+ <CurrencyCode>USD</CurrencyCode>
2610
+ <Amount>FILTERED</Amount>
2611
+ </Shipping>
2612
+ </BuyBoxPrice>
2613
+ </BuyBoxPrices>
2614
+ <ListPrice>
2615
+ <CurrencyCode>USD</CurrencyCode>
2616
+ <Amount>FILTERED</Amount>
2617
+ </ListPrice>
2618
+ <BuyBoxEligibleOffers>
2619
+ <OfferCount condition="used" fulfillmentChannel="Merchant">2</OfferCount>
2620
+ <OfferCount condition="new" fulfillmentChannel="Amazon">1</OfferCount>
2621
+ <OfferCount condition="new" fulfillmentChannel="Merchant">4</OfferCount>
2622
+ </BuyBoxEligibleOffers>
2623
+ </Summary>
2624
+ <Offers>
2625
+ <Offer>
2626
+ <SubCondition>new</SubCondition>
2627
+ <SellerFeedbackRating>
2628
+ <SellerPositiveFeedbackRating>89.0</SellerPositiveFeedbackRating>
2629
+ <FeedbackCount>178204</FeedbackCount>
2630
+ </SellerFeedbackRating>
2631
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2632
+ <ListingPrice>
2633
+ <CurrencyCode>USD</CurrencyCode>
2634
+ <Amount>FILTERED</Amount>
2635
+ </ListingPrice>
2636
+ <Shipping>
2637
+ <CurrencyCode>USD</CurrencyCode>
2638
+ <Amount>FILTERED</Amount>
2639
+ </Shipping>
2640
+ <ShipsFrom>
2641
+ <Country></Country>
2642
+ </ShipsFrom>
2643
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2644
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2645
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
2646
+ </Offer>
2647
+ <Offer>
2648
+ <SubCondition>new</SubCondition>
2649
+ <SellerFeedbackRating>
2650
+ <SellerPositiveFeedbackRating>90.0</SellerPositiveFeedbackRating>
2651
+ <FeedbackCount>175727</FeedbackCount>
2652
+ </SellerFeedbackRating>
2653
+ <ShippingTime minimumHours="48" maximumHours="72" availabilityType="NOW"/>
2654
+ <ListingPrice>
2655
+ <CurrencyCode>USD</CurrencyCode>
2656
+ <Amount>FILTERED</Amount>
2657
+ </ListingPrice>
2658
+ <Shipping>
2659
+ <CurrencyCode>USD</CurrencyCode>
2660
+ <Amount>FILTERED</Amount>
2661
+ </Shipping>
2662
+ <ShipsFrom>
2663
+ <Country></Country>
2664
+ </ShipsFrom>
2665
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2666
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2667
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
2668
+ </Offer>
2669
+ <Offer>
2670
+ <SubCondition>new</SubCondition>
2671
+ <SellerFeedbackRating>
2672
+ <SellerPositiveFeedbackRating>91.0</SellerPositiveFeedbackRating>
2673
+ <FeedbackCount>387</FeedbackCount>
2674
+ </SellerFeedbackRating>
2675
+ <ShippingTime minimumHours="0" maximumHours="0" availabilityType="NOW"/>
2676
+ <ListingPrice>
2677
+ <CurrencyCode>USD</CurrencyCode>
2678
+ <Amount>FILTERED</Amount>
2679
+ </ListingPrice>
2680
+ <Shipping>
2681
+ <CurrencyCode>USD</CurrencyCode>
2682
+ <Amount>FILTERED</Amount>
2683
+ </Shipping>
2684
+ <IsFulfilledByAmazon>true</IsFulfilledByAmazon>
2685
+ <IsBuyBoxWinner>true</IsBuyBoxWinner>
2686
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2687
+ </Offer>
2688
+ <Offer>
2689
+ <SubCondition>new</SubCondition>
2690
+ <SellerFeedbackRating>
2691
+ <SellerPositiveFeedbackRating>86.0</SellerPositiveFeedbackRating>
2692
+ <FeedbackCount>308</FeedbackCount>
2693
+ </SellerFeedbackRating>
2694
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2695
+ <ListingPrice>
2696
+ <CurrencyCode>USD</CurrencyCode>
2697
+ <Amount>FILTERED</Amount>
2698
+ </ListingPrice>
2699
+ <Shipping>
2700
+ <CurrencyCode>USD</CurrencyCode>
2701
+ <Amount>FILTERED</Amount>
2702
+ </Shipping>
2703
+ <ShipsFrom>
2704
+ <State>NY</State>
2705
+ <Country>US</Country>
2706
+ </ShipsFrom>
2707
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2708
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2709
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
2710
+ </Offer>
2711
+ <Offer>
2712
+ <SubCondition>new</SubCondition>
2713
+ <SellerFeedbackRating>
2714
+ <SellerPositiveFeedbackRating>93.0</SellerPositiveFeedbackRating>
2715
+ <FeedbackCount>10772</FeedbackCount>
2716
+ </SellerFeedbackRating>
2717
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2718
+ <ListingPrice>
2719
+ <CurrencyCode>USD</CurrencyCode>
2720
+ <Amount>FILTERED</Amount>
2721
+ </ListingPrice>
2722
+ <Shipping>
2723
+ <CurrencyCode>USD</CurrencyCode>
2724
+ <Amount>FILTERED</Amount>
2725
+ </Shipping>
2726
+ <ShipsFrom>
2727
+ <Country>IE</Country>
2728
+ </ShipsFrom>
2729
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2730
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2731
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
2732
+ </Offer>
2733
+ <Offer>
2734
+ <SubCondition>new</SubCondition>
2735
+ <SellerFeedbackRating>
2736
+ <SellerPositiveFeedbackRating>97.0</SellerPositiveFeedbackRating>
2737
+ <FeedbackCount>6466</FeedbackCount>
2738
+ </SellerFeedbackRating>
2739
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2740
+ <ListingPrice>
2741
+ <CurrencyCode>USD</CurrencyCode>
2742
+ <Amount>FILTERED</Amount>
2743
+ </ListingPrice>
2744
+ <Shipping>
2745
+ <CurrencyCode>USD</CurrencyCode>
2746
+ <Amount>FILTERED</Amount>
2747
+ </Shipping>
2748
+ <ShipsFrom>
2749
+ <Country>GB</Country>
2750
+ </ShipsFrom>
2751
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2752
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2753
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2754
+ </Offer>
2755
+ <Offer>
2756
+ <SubCondition>new</SubCondition>
2757
+ <SellerFeedbackRating>
2758
+ <SellerPositiveFeedbackRating>88.0</SellerPositiveFeedbackRating>
2759
+ <FeedbackCount>106647</FeedbackCount>
2760
+ </SellerFeedbackRating>
2761
+ <ShippingTime minimumHours="48" maximumHours="72" availabilityType="NOW"/>
2762
+ <ListingPrice>
2763
+ <CurrencyCode>USD</CurrencyCode>
2764
+ <Amount>FILTERED</Amount>
2765
+ </ListingPrice>
2766
+ <Shipping>
2767
+ <CurrencyCode>USD</CurrencyCode>
2768
+ <Amount>FILTERED</Amount>
2769
+ </Shipping>
2770
+ <ShipsFrom>
2771
+ <Country></Country>
2772
+ </ShipsFrom>
2773
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2774
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2775
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
2776
+ </Offer>
2777
+ <Offer>
2778
+ <SubCondition>new</SubCondition>
2779
+ <SellerFeedbackRating>
2780
+ <SellerPositiveFeedbackRating>96.0</SellerPositiveFeedbackRating>
2781
+ <FeedbackCount>59917</FeedbackCount>
2782
+ </SellerFeedbackRating>
2783
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2784
+ <ListingPrice>
2785
+ <CurrencyCode>USD</CurrencyCode>
2786
+ <Amount>FILTERED</Amount>
2787
+ </ListingPrice>
2788
+ <Shipping>
2789
+ <CurrencyCode>USD</CurrencyCode>
2790
+ <Amount>FILTERED</Amount>
2791
+ </Shipping>
2792
+ <ShipsFrom>
2793
+ <State>OR</State>
2794
+ <Country>US</Country>
2795
+ </ShipsFrom>
2796
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2797
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2798
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2799
+ </Offer>
2800
+ <Offer>
2801
+ <SubCondition>new</SubCondition>
2802
+ <SellerFeedbackRating>
2803
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
2804
+ <FeedbackCount>0</FeedbackCount>
2805
+ </SellerFeedbackRating>
2806
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2807
+ <ListingPrice>
2808
+ <CurrencyCode>USD</CurrencyCode>
2809
+ <Amount>FILTERED</Amount>
2810
+ </ListingPrice>
2811
+ <Shipping>
2812
+ <CurrencyCode>USD</CurrencyCode>
2813
+ <Amount>FILTERED</Amount>
2814
+ </Shipping>
2815
+ <ShipsFrom>
2816
+ <Country>IN</Country>
2817
+ </ShipsFrom>
2818
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2819
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2820
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
2821
+ </Offer>
2822
+ <Offer>
2823
+ <SubCondition>new</SubCondition>
2824
+ <SellerFeedbackRating>
2825
+ <SellerPositiveFeedbackRating>0.0</SellerPositiveFeedbackRating>
2826
+ <FeedbackCount>0</FeedbackCount>
2827
+ </SellerFeedbackRating>
2828
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2829
+ <ListingPrice>
2830
+ <CurrencyCode>USD</CurrencyCode>
2831
+ <Amount>FILTERED</Amount>
2832
+ </ListingPrice>
2833
+ <Shipping>
2834
+ <CurrencyCode>USD</CurrencyCode>
2835
+ <Amount>FILTERED</Amount>
2836
+ </Shipping>
2837
+ <ShipsFrom>
2838
+ <Country>IN</Country>
2839
+ </ShipsFrom>
2840
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2841
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2842
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
2843
+ </Offer>
2844
+ <Offer>
2845
+ <SubCondition>new</SubCondition>
2846
+ <SellerFeedbackRating>
2847
+ <SellerPositiveFeedbackRating>99.0</SellerPositiveFeedbackRating>
2848
+ <FeedbackCount>649</FeedbackCount>
2849
+ </SellerFeedbackRating>
2850
+ <ShippingTime minimumHours="96" maximumHours="120" availabilityType="NOW"/>
2851
+ <ListingPrice>
2852
+ <CurrencyCode>USD</CurrencyCode>
2853
+ <Amount>FILTERED</Amount>
2854
+ </ListingPrice>
2855
+ <Shipping>
2856
+ <CurrencyCode>USD</CurrencyCode>
2857
+ <Amount>FILTERED</Amount>
2858
+ </Shipping>
2859
+ <ShipsFrom>
2860
+ <Country></Country>
2861
+ </ShipsFrom>
2862
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2863
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2864
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2865
+ </Offer>
2866
+ <Offer>
2867
+ <SubCondition>new</SubCondition>
2868
+ <SellerFeedbackRating>
2869
+ <SellerPositiveFeedbackRating>95.0</SellerPositiveFeedbackRating>
2870
+ <FeedbackCount>1918</FeedbackCount>
2871
+ </SellerFeedbackRating>
2872
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2873
+ <ListingPrice>
2874
+ <CurrencyCode>USD</CurrencyCode>
2875
+ <Amount>FILTERED</Amount>
2876
+ </ListingPrice>
2877
+ <Shipping>
2878
+ <CurrencyCode>USD</CurrencyCode>
2879
+ <Amount>FILTERED</Amount>
2880
+ </Shipping>
2881
+ <ShipsFrom>
2882
+ <Country>DE</Country>
2883
+ </ShipsFrom>
2884
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2885
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2886
+ <IsFeaturedMerchant>true</IsFeaturedMerchant>
2887
+ </Offer>
2888
+ <Offer>
2889
+ <SubCondition>new</SubCondition>
2890
+ <SellerFeedbackRating>
2891
+ <SellerPositiveFeedbackRating>97.0</SellerPositiveFeedbackRating>
2892
+ <FeedbackCount>783</FeedbackCount>
2893
+ </SellerFeedbackRating>
2894
+ <ShippingTime minimumHours="96" maximumHours="120" availabilityType="NOW"/>
2895
+ <ListingPrice>
2896
+ <CurrencyCode>USD</CurrencyCode>
2897
+ <Amount>FILTERED</Amount>
2898
+ </ListingPrice>
2899
+ <Shipping>
2900
+ <CurrencyCode>USD</CurrencyCode>
2901
+ <Amount>FILTERED</Amount>
2902
+ </Shipping>
2903
+ <ShipsFrom>
2904
+ <State>NC</State>
2905
+ <Country>US</Country>
2906
+ </ShipsFrom>
2907
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2908
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2909
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
2910
+ </Offer>
2911
+ <Offer>
2912
+ <SubCondition>new</SubCondition>
2913
+ <SellerFeedbackRating>
2914
+ <SellerPositiveFeedbackRating>90.0</SellerPositiveFeedbackRating>
2915
+ <FeedbackCount>13017</FeedbackCount>
2916
+ </SellerFeedbackRating>
2917
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2918
+ <ListingPrice>
2919
+ <CurrencyCode>USD</CurrencyCode>
2920
+ <Amount>FILTERED</Amount>
2921
+ </ListingPrice>
2922
+ <Shipping>
2923
+ <CurrencyCode>USD</CurrencyCode>
2924
+ <Amount>FILTERED</Amount>
2925
+ </Shipping>
2926
+ <ShipsFrom>
2927
+ <State>PA</State>
2928
+ <Country>US</Country>
2929
+ </ShipsFrom>
2930
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2931
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2932
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
2933
+ </Offer>
2934
+ <Offer>
2935
+ <SubCondition>new</SubCondition>
2936
+ <SellerFeedbackRating>
2937
+ <SellerPositiveFeedbackRating>100.0</SellerPositiveFeedbackRating>
2938
+ <FeedbackCount>5</FeedbackCount>
2939
+ </SellerFeedbackRating>
2940
+ <ShippingTime minimumHours="24" maximumHours="48" availabilityType="NOW"/>
2941
+ <ListingPrice>
2942
+ <CurrencyCode>USD</CurrencyCode>
2943
+ <Amount>FILTERED</Amount>
2944
+ </ListingPrice>
2945
+ <Shipping>
2946
+ <CurrencyCode>USD</CurrencyCode>
2947
+ <Amount>FILTERED</Amount>
2948
+ </Shipping>
2949
+ <ShipsFrom>
2950
+ <Country>GB</Country>
2951
+ </ShipsFrom>
2952
+ <IsFulfilledByAmazon>false</IsFulfilledByAmazon>
2953
+ <IsBuyBoxWinner>false</IsBuyBoxWinner>
2954
+ <IsFeaturedMerchant>false</IsFeaturedMerchant>
2955
+ </Offer>
2956
+ </Offers>
2957
+ </GetLowestPricedOffersForASINResult>
2958
+ <ResponseMetadata>
2959
+ <RequestId>f0f3d790-1642-458d-88e5-baead9088283</RequestId>
2960
+ </ResponseMetadata>
2961
+ </GetLowestPricedOffersForASINResponse>
2962
+ http_version:
2963
+ recorded_at: Sun, 29 Jan 2017 23:55:29 GMT
2964
+ recorded_with: VCR 3.0.3