agent_cooper 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. data/.gitignore +1 -1
  2. data/README.md +13 -4
  3. data/Rakefile +0 -3
  4. data/agent_cooper.gemspec +12 -13
  5. data/features/finder.feature +4 -6
  6. data/features/merchandiser.feature +1 -2
  7. data/features/shopper.feature +2 -2
  8. data/features/support/env.rb +5 -5
  9. data/features/support/vcr.rb +10 -0
  10. data/lib/agent_cooper.rb +17 -4
  11. data/lib/agent_cooper/config.rb +3 -9
  12. data/lib/agent_cooper/nokogiri_decorator.rb +47 -0
  13. data/lib/agent_cooper/request.rb +36 -13
  14. data/lib/agent_cooper/requests/finder.rb +25 -0
  15. data/lib/agent_cooper/requests/merchandiser.rb +25 -0
  16. data/lib/agent_cooper/requests/shopper.rb +23 -0
  17. data/lib/agent_cooper/response.rb +3 -4
  18. data/lib/agent_cooper/synchrony.rb +34 -0
  19. data/lib/agent_cooper/version.rb +1 -1
  20. data/spec/agent_cooper/request_spec.rb +91 -6
  21. data/spec/agent_cooper/requests/finder_spec.rb +13 -0
  22. data/spec/agent_cooper/requests/merchandiser_spec.rb +13 -0
  23. data/spec/agent_cooper/requests/shopper_spec.rb +13 -0
  24. data/spec/agent_cooper/response_spec.rb +51 -1
  25. data/spec/agent_cooper_spec.rb +12 -0
  26. data/spec/fixtures/cassettes/finder/find_items_advanced/d49218a9522a4a055e31fc6b88c3a2b5.yml +528 -0
  27. data/spec/fixtures/cassettes/finder/find_items_by_category/85e07de9993e68d09e895f1b01234c5a.yml +463 -0
  28. data/spec/fixtures/cassettes/finder/find_items_by_keywords/91d7d9b4b62b82877604465a20f9ffa9.yml +668 -0
  29. data/spec/fixtures/cassettes/finder/find_items_by_product/59ee1391b6dfc2a93e30c8911942fc71.yml +744 -0
  30. data/spec/fixtures/cassettes/finder/find_items_in_ebay_stores/c7d658804b6353fda03809c21b183af2.yml +472 -0
  31. data/spec/fixtures/cassettes/finder/get_histograms/80bd04d96cd529af4148866a2d28f079.yml +46 -0
  32. data/spec/fixtures/cassettes/finder/get_search_keywords_recommendation/ec96bf3af091373de08550ff46f86c87.yml +41 -0
  33. data/spec/fixtures/cassettes/merchandiser/get_most_watched_items/3c0cb6fb7bb94b384cae15be175e9640.yml +51 -0
  34. data/spec/fixtures/cassettes/merchandiser/get_related_category_items/c949e90fb2bd975020df657a4348328d.yml +41 -0
  35. data/spec/fixtures/cassettes/merchandiser/get_similar_items/56c2c41a60135db83d359053778a065f.yml +41 -0
  36. data/spec/fixtures/cassettes/merchandiser/get_top_selling_products/a82dcb1f094754e54f2a5de191818c3f.yml +53 -0
  37. data/spec/fixtures/cassettes/shopper/find_half_products/77ad8a2ade8e4efadef07346677e43a9.yml +55 -0
  38. data/spec/fixtures/cassettes/shopper/find_popular_items/532fcb32fee187bdc6cc5fb7e4336992.yml +258 -0
  39. data/spec/fixtures/cassettes/shopper/find_popular_searches/6db9b375ea610e870e7a4ca4e20974ec.yml +45 -0
  40. data/spec/fixtures/cassettes/shopper/find_products/3fd6d6000037cd409ab1ef18a6075257.yml +52 -0
  41. data/spec/fixtures/cassettes/shopper/find_reviews_and_guides/8586a984e122cb84136d3cc0bb8bec77.yml +174 -0
  42. data/spec/fixtures/cassettes/shopper/get_item_status/f34cf10c602f9fec7a388297888b4299.yml +45 -0
  43. data/spec/fixtures/cassettes/shopper/get_multiple_items/c1183c23add6cad9afbb73f986c2692e.yml +46 -0
  44. data/spec/fixtures/cassettes/shopper/get_shipping_costs/e7de18031f266637414155639797c097.yml +45 -0
  45. data/spec/fixtures/cassettes/shopper/get_single_item/d4a895de6b214907c47a0b32ab630b9a.yml +44 -0
  46. data/spec/fixtures/cassettes/shopper/get_user_profile/dccabbf426bfeba4d898ca546e17dd4b.yml +47 -0
  47. data/spec/{support → fixtures}/ebay.yml.sample +0 -0
  48. data/spec/spec_helper.rb +4 -0
  49. metadata +141 -177
  50. data/lib/agent_cooper/finder.rb +0 -21
  51. data/lib/agent_cooper/merchandiser.rb +0 -24
  52. data/lib/agent_cooper/shopper.rb +0 -22
  53. data/spec/agent_cooper/config_spec.rb +0 -21
  54. data/spec/agent_cooper/finder_spec.rb +0 -19
  55. data/spec/agent_cooper/merchandiser_spec.rb +0 -18
  56. data/spec/agent_cooper/shopper_spec.rb +0 -18
@@ -12,7 +12,7 @@ module AgentCooper
12
12
  end
13
13
 
14
14
  def to_hash
15
- response.parsed_response
15
+ xml.to_hash
16
16
  end
17
17
 
18
18
  def code
@@ -29,8 +29,7 @@ module AgentCooper
29
29
 
30
30
  protected
31
31
 
32
- def response
33
- @response
34
- end
32
+ attr_reader :response
33
+
35
34
  end
36
35
  end
@@ -0,0 +1,34 @@
1
+ require 'agent_cooper'
2
+ require 'em-synchrony'
3
+ require 'em-synchrony/em-http'
4
+
5
+ module AgentCooper
6
+
7
+ class Request
8
+ def adapter
9
+ @adapter ||= EM::HttpRequest
10
+ end
11
+
12
+ def aget(&block)
13
+ http = adapter.new(url).aget
14
+ http.callback { block.call(Response.new(http)) }
15
+ http.errback { block.call(Response.new(http)) }
16
+ end
17
+
18
+ def get
19
+ http = adapter.new(url).get
20
+ Response.new(http)
21
+ end
22
+ end
23
+
24
+ class Response
25
+ def body
26
+ response.response
27
+ end
28
+
29
+ def code
30
+ response.response_header.status
31
+ end
32
+ end
33
+
34
+ end
@@ -1,3 +1,3 @@
1
1
  module AgentCooper
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
@@ -1,23 +1,107 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  module AgentCooper
4
+
4
5
  describe Request do
6
+
7
+ let(:adapter) { mock(HTTPClient) }
8
+ let(:url) { 'http://foo.com' }
9
+
10
+ let(:response) { 'bar' }
11
+
12
+ let(:host) { 'foo.com' }
13
+ let(:path) { '/bar' }
14
+ let(:query) { 'foo=bar&bar=foo' }
15
+
16
+ let(:default_parameters) { {:foo => 'bar'} }
17
+ let(:parameters) { {:bar => 'foo'} }
18
+
19
+ let(:config) { mock(Config) }
20
+
5
21
  subject { Request }
6
22
 
7
23
  before(:each) do
8
24
  @request = subject.new
9
25
  end
10
-
11
- describe "#options" do
26
+
27
+ describe "#app_id" do
28
+ before(:each) do
29
+ @request.instance_variable_set(:@config, config)
30
+ end
31
+
32
+ it "calls @config.app_id" do
33
+ config.should_receive(:app_id)
34
+ @request.app_id
35
+ end
36
+ end
37
+
38
+ describe "#adapter" do
39
+ it "defaults to HTTPClient" do
40
+ @request.adapter.should be_a(HTTPClient)
41
+ end
42
+ end
43
+
44
+ describe "#get" do
45
+ before(:each) do
46
+ adapter.stub(:get).and_return(response)
47
+
48
+ @request.stub(:adapter).and_return(adapter)
49
+ @request.stub(:url).and_return(url)
50
+ end
51
+
52
+ it "calls adapter#get" do
53
+ adapter.should_receive(:get).with(url)
54
+ @request.get
55
+ end
56
+
57
+ it "initializes a new AgentCooper::Response" do
58
+ Response.should_receive(:new).with(response)
59
+ @request.get
60
+ end
61
+
62
+ it "returns an AgentCooper::Response" do
63
+ @request.get.should be_a(Response)
64
+ end
65
+ end
66
+
67
+ describe "#url" do
68
+ before(:each) do
69
+ @request.stub(:host).and_return(host)
70
+ @request.stub(:path).and_return(path)
71
+ @request.stub(:query).and_return(query)
72
+ end
73
+
74
+ it "builds the correct url" do
75
+ URI::HTTP.should_receive(:build).with(:host => host, :path => path, :query => query)
76
+ @request.url
77
+ end
78
+
79
+ it "returns an instance of URI::HTTP" do
80
+ @request.url.should be_a(URI::HTTP)
81
+ end
82
+ end
83
+
84
+ describe "#query" do
85
+ before(:each) do
86
+ @request.stub(:default_parameters).and_return(default_parameters)
87
+ @request.stub(:parameters).and_return(parameters)
88
+ end
89
+
90
+ it "returns the query" do
91
+ @request.query.should == "foo=bar&bar=foo"
92
+ end
93
+ end
94
+
95
+ describe "#parameters" do
12
96
  it "returns a hash" do
13
- @request.options.should be_a(Hash)
97
+ @request.parameters.should be_a(Hash)
14
98
  end
15
99
  end
16
100
 
17
101
  describe "#<<" do
18
- it "merges a hash into the existing options" do
102
+ it "merges a hash into the existing parameters" do
19
103
  @request << {:foo => "bar"}
20
- @request.options[:foo].should == "bar"
104
+ @request.parameters[:foo].should == "bar"
21
105
  end
22
106
  end
23
107
 
@@ -25,8 +109,9 @@ module AgentCooper
25
109
  it "resets the parameters to a blank hash" do
26
110
  @request << {:foo => 'bar'}
27
111
  @request.reset!
28
- @request.options.should_not have_key(:foo)
112
+ @request.parameters.should_not have_key(:foo)
29
113
  end
30
114
  end
31
115
  end
116
+
32
117
  end
@@ -0,0 +1,13 @@
1
+ require 'spec_helper'
2
+
3
+ module AgentCooper
4
+ describe Finder do
5
+
6
+ subject { Finder.new }
7
+
8
+ it "inherits from AgentCooper::Request" do
9
+ subject.should be_a(Request)
10
+ end
11
+
12
+ end
13
+ end
@@ -0,0 +1,13 @@
1
+ require 'spec_helper'
2
+
3
+ module AgentCooper
4
+ describe Merchandiser do
5
+
6
+ subject { Merchandiser.new }
7
+
8
+ it "inherits from AgentCooper::Request" do
9
+ subject.should be_a(Request)
10
+ end
11
+
12
+ end
13
+ end
@@ -0,0 +1,13 @@
1
+ require 'spec_helper'
2
+
3
+ module AgentCooper
4
+ describe Shopper do
5
+
6
+ subject { Shopper.new }
7
+
8
+ it "inherits from AgentCooper::Request" do
9
+ subject.should be_a(Request)
10
+ end
11
+
12
+ end
13
+ end
@@ -2,6 +2,56 @@ require 'spec_helper'
2
2
 
3
3
  module AgentCooper
4
4
  describe Response do
5
- subject { AgentCooper::Response }
5
+
6
+ let(:response) { '<root><item></item></root>' }
7
+
8
+ subject { Response.new(response) }
9
+
10
+ before(:each) do
11
+ response.stub(:body).and_return(response)
12
+ end
13
+
14
+ describe "#body" do
15
+ it "delegates to response#code" do
16
+ response.should_receive(:body)
17
+ subject.body
18
+ end
19
+ end
20
+
21
+ describe "#to_hash" do
22
+ it "converts the xml to a hash" do
23
+ subject.to_hash.should == { "item"=> {} }
24
+ end
25
+ end
26
+
27
+ describe "#code" do
28
+ it "delegate to response#code" do
29
+ response.should_receive(:code)
30
+ subject.code
31
+ end
32
+ end
33
+
34
+ describe "#valid?" do
35
+ context "#code returns '200'" do
36
+ before(:each) do
37
+ subject.stub(:code).and_return(200)
38
+ end
39
+
40
+ it "returns true" do
41
+ subject.valid?.should be_true
42
+ end
43
+ end
44
+
45
+ context "#code does not return '200'" do
46
+ before(:each) do
47
+ subject.stub(:code).and_return(500)
48
+ end
49
+
50
+ it "returns false" do
51
+ subject.valid?.should be_false
52
+ end
53
+ end
54
+ end
55
+
6
56
  end
7
57
  end
@@ -0,0 +1,12 @@
1
+ require 'spec_helper'
2
+
3
+ describe AgentCooper do
4
+
5
+ subject { AgentCooper }
6
+
7
+ describe ".configure" do
8
+ it "yields a Config object" do
9
+ subject.configure {|c| c.should == AgentCooper::Config }
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,528 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://svcs.ebay.com:80/services/search/FindingService/v1?OPERATION-NAME=findItemsAdvanced&RESPONSE-DATA-FORMAT=XML&REST-PAYLOAD=&SECURITY-APPNAME=YOUR-APP-ID&SECURITY-VERSION=1.9.0&keywords=tolkien
6
+ body: !!null
7
+ headers: !!null
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ content-type:
14
+ - text/xml;charset=UTF-8
15
+ server:
16
+ - Apache-Coyote/1.1
17
+ x-ebay-esb-endpointurl:
18
+ - /Root/ESBFunctions/Services/Ports/7002/profile/search/v1/FindingService/destination_default/address_synapse
19
+ x-ebay-esb-guid:
20
+ - urn:uuid:779C16D23D35582BD91311805075391
21
+ x-ebay-soa-locale-list:
22
+ - en-US_US
23
+ x-ebay-soa-message-protocol:
24
+ - NONE
25
+ x-ebay-soa-operation-name:
26
+ - findItemsAdvanced
27
+ x-ebay-soa-request-id:
28
+ - 131583e6-6a00-a0aa-1687-e6d7fff890aa!FindingService!10.10.161.104!v3apifindingcore[!FindItemService!10.10.161.104!v3apifindingcore[]]
29
+ x-ebay-soa-response-data-format:
30
+ - XML
31
+ x-ebay-soa-service-name:
32
+ - ! '{http://www.ebay.com/marketplace/search/v1/services}FindingService'
33
+ x-ebay-soa-service-version:
34
+ - 1.11.0
35
+ date:
36
+ - Sat, 23 Jul 2011 18:25:09 GMT
37
+ transfer-encoding:
38
+ - chunked
39
+ body: ! '<?xml version=''1.0'' encoding=''UTF-8''?><findItemsAdvancedResponse
40
+ xmlns="http://www.ebay.com/marketplace/search/v1/services"><ack>Success</ack><version>1.11.0</version><timestamp>2011-07-23T18:25:09.964Z</timestamp><searchResult
41
+ count="100"><item><itemId>170669068749</itemId><title>J.R.R. TOLKIEN - THE LORD
42
+ OF THE RINGS</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
43
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1706690687494040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/J-R-R-TOLKIEN-LORD-RINGS-/170669068749?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>45230</postalCode><location>Cincinnati,OH,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
44
+ currencyId="USD">200.0</currentPrice><convertedCurrentPrice currencyId="USD">200.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT0H6M29S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-16T18:31:38.000Z</startTime><endTime>2011-07-23T18:31:38.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>270751364813</itemId><title>1st/1st
45
+ Edition THE HOBBIT J.R.R. Tolkien LORD OF RINGS</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
46
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2707513648134040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/1st-1st-Edition-HOBBIT-J-R-R-Tolkien-LORD-RINGS-/270751364813?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>53228</postalCode><location>Milwaukee,WI,USA</location><country>US</country><shippingInfo><shippingServiceCost
47
+ currencyId="USD">3.99</shippingServiceCost><shippingType>FlatDomesticCalculatedInternational</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
48
+ currencyId="USD">65.0</currentPrice><convertedCurrentPrice currencyId="USD">65.0</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P24DT1H26M58S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>true</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-05-18T19:47:07.000Z</startTime><endTime>2011-08-16T19:52:07.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>290588068333</itemId><title>Final
49
+ Witness by Simon Tolkien (2003, Hardcover)</title><globalId>EBAY-US</globalId><subtitle>W/DJ</subtitle><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
50
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2905880683334040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Final-Witness-Simon-Tolkien-2003-Hardcover-/290588068333?pt=US_Fiction_Books</viewItemURL><productId
51
+ type="ReferenceID">2231978</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>40059</postalCode><location>Prospect,KY,USA</location><country>US</country><shippingInfo><shippingServiceCost
52
+ currencyId="USD">3.5</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>4</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
53
+ currencyId="USD">0.25</currentPrice><convertedCurrentPrice currencyId="USD">0.25</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT0H51M7S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-16T19:16:16.000Z</startTime><endTime>2011-07-23T19:16:16.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
54
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>120750739497</itemId><title>Hobbit
55
+ Tolkien Houghton Mifflin Collector Edn 2nd Print</title><globalId>EBAY-US</globalId><subtitle>Good
56
+ to Very Good condition with Gilt Runes in slipcase</subtitle><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
57
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1207507394974040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Hobbit-Tolkien-Houghton-Mifflin-Collector-Edn-2nd-Print-/120750739497?pt=US_Fiction_Books</viewItemURL><productId
58
+ type="ReferenceID">126259</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>94501</postalCode><location>Alameda,CA,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
59
+ currencyId="USD">24.99</currentPrice><convertedCurrentPrice currencyId="USD">24.99</convertedCurrentPrice><bidCount>1</bidCount><sellingState>Active</sellingState><timeLeft>P0DT1H6M48S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-16T19:31:57.000Z</startTime><endTime>2011-07-23T19:31:57.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>5000</conditionId><conditionDisplayName>Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>300578328698</itemId><title>TOLKIEN
60
+ - SILMARILLION -NICE 1ST!</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
61
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/3005783286984040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/TOLKIEN-SILMARILLION-NICE-1ST-/300578328698?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>98408</postalCode><location>Tacoma,WA,USA</location><country>US</country><shippingInfo><shippingServiceCost
62
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations><shipToLocations>CA</shipToLocations></shippingInfo><sellingStatus><currentPrice
63
+ currencyId="USD">24.99</currentPrice><convertedCurrentPrice currencyId="USD">24.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT1H10M24S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-16T19:35:33.000Z</startTime><endTime>2011-07-23T19:35:33.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>120750743577</itemId><title>Ballantine
64
+ Special TPB 1974 Lord of the Rings Tolkien</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
65
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1207507435774040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Ballantine-Special-TPB-1974-Lord-Rings-Tolkien-/120750743577?pt=US_Fiction_Books</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>94501</postalCode><location>Alameda,CA,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
66
+ currencyId="USD">8.99</currentPrice><convertedCurrentPrice currencyId="USD">8.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT1H14M1S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-16T19:39:10.000Z</startTime><endTime>2011-07-23T19:39:10.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>6000</conditionId><conditionDisplayName>Acceptable</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>290552973749</itemId><title>lord
67
+ of the rings trilogy J.R.R. Tolkien 1st Allen UK</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
68
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2905529737494040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/lord-rings-trilogy-J-R-R-Tolkien-1st-Allen-UK-/290552973749?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>11385</postalCode><location>Ridgewood,NY,USA</location><country>US</country><shippingInfo><shippingServiceCost
69
+ currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
70
+ currencyId="USD">2160.0</currentPrice><convertedCurrentPrice currencyId="USD">2160.0</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P10DT20H20M39S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-04-05T14:40:48.000Z</startTime><endTime>2011-08-03T14:45:48.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>150631912331</itemId><title>The
71
+ Hobbit J.R.R. Tolkien 1961 Puffin Edition</title><globalId>EBAY-GB</globalId><subtitle>NO
72
+ RESERVE !Check out the Photos! NO RESERVE</subtitle><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
73
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/1506319123314040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Hobbit-J-R-R-Tolkien-1961-Puffin-Edition-/150631912331?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><location>United
74
+ Kingdom</location><country>GB</country><shippingInfo><shippingServiceCost currencyId="USD">26.1</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
75
+ currencyId="GBP">19.02</currentPrice><convertedCurrentPrice currencyId="USD">31.03</convertedCurrentPrice><bidCount>9</bidCount><sellingState>Active</sellingState><timeLeft>P0DT1H38M14S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-13T20:03:23.000Z</startTime><endTime>2011-07-23T20:03:23.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>260819297691</itemId><title>A
76
+ Tolkien Miscellany</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
77
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2608192976914040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Tolkien-Miscellany-/260819297691?pt=US_Fiction_Books</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>29153</postalCode><location>Sumter,SC,USA</location><country>US</country><shippingInfo><shippingServiceCost
78
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>4</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
79
+ currencyId="USD">0.99</currentPrice><convertedCurrentPrice currencyId="USD">0.99</convertedCurrentPrice><bidCount>1</bidCount><sellingState>Active</sellingState><timeLeft>P0DT1H38M15S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-16T20:03:24.000Z</startTime><endTime>2011-07-23T20:03:24.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
80
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>170669113527</itemId><title>The
81
+ Fellowship Of The Ring by J. R. R. Tolkien (1989...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
82
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/1706691135274040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Fellowship-Ring-J-R-R-Tolkien-1989-/170669113527?pt=US_Fiction_Books</viewItemURL><productId
83
+ type="ReferenceID">128601</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>56470</postalCode><location>Park
84
+ Rapids,MN,USA</location><country>US</country><shippingInfo><shippingServiceCost
85
+ currencyId="USD">2.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
86
+ currencyId="USD">1.5</currentPrice><convertedCurrentPrice currencyId="USD">1.5</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT1H42M47S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-16T20:08:57.000Z</startTime><endTime>2011-07-23T20:07:56.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
87
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>330589483727</itemId><title>lord
88
+ of the rings vol 3 soft cover j.r.r tolkien </title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
89
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/3305894837274040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/lord-rings-vol-3-soft-cover-j-r-r-tolkien-/330589483727?pt=US_Fiction_Books</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>59337</postalCode><location>Jordan,MT,USA</location><country>US</country><shippingInfo><shippingServiceCost
90
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
91
+ currencyId="USD">6.99</currentPrice><convertedCurrentPrice currencyId="USD">6.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT2H18M40S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-16T20:43:49.000Z</startTime><endTime>2011-07-23T20:43:49.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
92
+ Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>260822671981</itemId><title>The
93
+ Legend of Sigurd and Gudrun by J. R. R. Tolkien ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
94
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2608226719814040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Legend-Sigurd-and-Gudrun-J-R-R-Tolkien-/260822671981?pt=US_Fiction_Books</viewItemURL><productId
95
+ type="ReferenceID">72407768</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>95678</postalCode><location>Roseville,CA,USA</location><country>US</country><shippingInfo><shippingServiceCost
96
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
97
+ currencyId="USD">2.5</currentPrice><convertedCurrentPrice currencyId="USD">2.5</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT2H20M11S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
98
+ currencyId="USD">10.0</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">10.0</convertedBuyItNowPrice><startTime>2011-07-22T20:46:21.000Z</startTime><endTime>2011-07-23T20:45:20.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
99
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>220565872900</itemId><title>J
100
+ R R TOLKIEN - History of Middle Earth 12 VOLS+ 1ST ED</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
101
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2205658729004040_3.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/J-R-R-TOLKIEN-History-Middle-Earth-12-VOLS-1ST-ED-/220565872900?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>true</autoPay><postalCode>03833</postalCode><location>Exeter,NH,USA</location><country>US</country><shippingInfo><shippingServiceCost
102
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>true</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
103
+ currencyId="USD">9500.0</currentPrice><convertedCurrentPrice currencyId="USD">9500.0</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P3DT1H22M14S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>true</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2010-03-03T19:42:23.000Z</startTime><endTime>2011-07-26T19:47:23.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>320729260952</itemId><title>tolkien
104
+ the hobbit and the silmarillion books</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
105
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/3207292609524040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/tolkien-hobbit-and-silmarillion-books-/320729260952?pt=Antiquarian_Books_UK</viewItemURL><charityId>20908</charityId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>RH125GE</postalCode><location>United
106
+ Kingdom</location><country>GB</country><shippingInfo><shippingServiceCost currencyId="USD">19.57</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>4</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
107
+ currencyId="GBP">50.0</currentPrice><convertedCurrentPrice currencyId="USD">81.56</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT2H23M2S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-16T20:48:11.000Z</startTime><endTime>2011-07-23T20:48:11.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>290588116470</itemId><title>Master
108
+ of Middle Earth, JRR Tolkien, in dw</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
109
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2905881164704040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Master-Middle-Earth-JRR-Tolkien-dw-/290588116470?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><location>United
110
+ Kingdom</location><country>GB</country><shippingInfo><shippingServiceCost currencyId="USD">19.57</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
111
+ currencyId="GBP">4.99</currentPrice><convertedCurrentPrice currencyId="USD">8.14</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT2H26M54S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-16T20:52:03.000Z</startTime><endTime>2011-07-23T20:52:03.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>220816188698</itemId><title>Tolkien
112
+ Lord of the Rings 2001 1 Vol. Movie Tie-in PB</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
113
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2208161886984040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Tolkien-Lord-Rings-2001-1-Vol-Movie-Tie-in-PB-/220816188698?pt=US_Fiction_Books</viewItemURL><productId
114
+ type="ReferenceID">1852438</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>17754</postalCode><location>Montoursville,PA,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
115
+ currencyId="USD">3.0</currentPrice><convertedCurrentPrice currencyId="USD">3.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT2H42M18S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T21:07:27.000Z</startTime><endTime>2011-07-23T21:07:27.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
116
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>220816189290</itemId><title>Tolkien
117
+ Lord of the Rings 2002 1 Vol. Movie Tie-in PB</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
118
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2208161892904040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Tolkien-Lord-Rings-2002-1-Vol-Movie-Tie-in-PB-/220816189290?pt=US_Fiction_Books</viewItemURL><productId
119
+ type="ReferenceID">2328093</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>17754</postalCode><location>Montoursville,PA,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
120
+ currencyId="USD">3.0</currentPrice><convertedCurrentPrice currencyId="USD">3.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT2H43M45S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T21:08:54.000Z</startTime><endTime>2011-07-23T21:08:54.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
121
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>310333169652</itemId><title>J.R.R.
122
+ Tolkien - The Hobbit - HCDJ - 1st NR</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
123
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/3103331696524040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/J-R-R-Tolkien-Hobbit-HCDJ-1st-NR-/310333169652?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>29680</postalCode><location>Simpsonville,SC,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>Americas</shipToLocations><shipToLocations>Europe</shipToLocations></shippingInfo><sellingStatus><currentPrice
124
+ currencyId="USD">34.79</currentPrice><convertedCurrentPrice currencyId="USD">34.79</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P26DT4H47M24S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>true</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-19T23:07:33.000Z</startTime><endTime>2011-08-18T23:12:33.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>220816189950</itemId><title>Tolkien
125
+ Lord of the Rings 2002 1 Vol. Movie UK PB</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
126
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2208161899504040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Tolkien-Lord-Rings-2002-1-Vol-Movie-UK-PB-/220816189950?pt=US_Fiction_Books</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>17754</postalCode><location>Montoursville,PA,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
127
+ currencyId="USD">3.0</currentPrice><convertedCurrentPrice currencyId="USD">3.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT2H45M6S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T21:10:15.000Z</startTime><endTime>2011-07-23T21:10:15.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
128
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>220816190938</itemId><title>Tolkien
129
+ Lord of the Rings 2003 1 Vol. Movie UK PB</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
130
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2208161909384040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Tolkien-Lord-Rings-2003-1-Vol-Movie-UK-PB-/220816190938?pt=US_Fiction_Books</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>17754</postalCode><location>Montoursville,PA,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
131
+ currencyId="USD">3.0</currentPrice><convertedCurrentPrice currencyId="USD">3.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT2H46M23S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T21:11:32.000Z</startTime><endTime>2011-07-23T21:11:32.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
132
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>220816191678</itemId><title>Tolkien
133
+ Lord of the Rings 2002 Movie Tie-in MMPBs</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
134
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2208161916784040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Tolkien-Lord-Rings-2002-Movie-Tie-in-MMPBs-/220816191678?pt=US_Fiction_Books</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>17754</postalCode><location>Montoursville,PA,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
135
+ currencyId="USD">3.0</currentPrice><convertedCurrentPrice currencyId="USD">3.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT2H47M52S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T21:13:01.000Z</startTime><endTime>2011-07-23T21:13:01.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
136
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>220816192374</itemId><title>Tolkien
137
+ Lord of the Rings 2001 3 Vol. Movie TPB Box Set</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
138
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2208161923744040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Tolkien-Lord-Rings-2001-3-Vol-Movie-TPB-Box-Set-/220816192374?pt=US_Fiction_Books</viewItemURL><productId
139
+ type="ReferenceID">1959999</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>17754</postalCode><location>Montoursville,PA,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
140
+ currencyId="USD">3.0</currentPrice><convertedCurrentPrice currencyId="USD">3.0</convertedCurrentPrice><bidCount>1</bidCount><sellingState>Active</sellingState><timeLeft>P0DT2H49M16S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T21:14:25.000Z</startTime><endTime>2011-07-23T21:14:25.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
141
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>280710777540</itemId><title>The
142
+ Silmarillion by J. R. R. Tolkien (1977, Book, Il...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
143
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2807107775404040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Silmarillion-J-R-R-Tolkien-1977-Book-Il-/280710777540?pt=US_Fiction_Books</viewItemURL><productId
144
+ type="ReferenceID">4424463</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>94509</postalCode><location>Antioch,CA,USA</location><country>US</country><shippingInfo><shippingServiceCost
145
+ currencyId="USD">3.99</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
146
+ currencyId="USD">1.86</currentPrice><convertedCurrentPrice currencyId="USD">1.86</convertedCurrentPrice><bidCount>2</bidCount><sellingState>Active</sellingState><timeLeft>P0DT3H10M50S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-16T21:37:00.000Z</startTime><endTime>2011-07-23T21:35:59.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
147
+ Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>140421889523</itemId><title>Tolkien,
148
+ JRR HOBBIT OR THERE AND BACK AGAIN 1st</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
149
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/1404218895234040_5.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Tolkien-JRR-HOBBIT-THERE-AND-BACK-AGAIN-1st-/140421889523?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>10960</postalCode><location>Nyack,NY,USA</location><country>US</country><shippingInfo><shippingServiceCost
150
+ currencyId="USD">3.95</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>true</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
151
+ currencyId="USD">575.0</currentPrice><convertedCurrentPrice currencyId="USD">575.0</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P0DT3H12M8S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>true</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2010-06-28T21:32:17.000Z</startTime><endTime>2011-07-23T21:37:17.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>280710777819</itemId><title>The
152
+ Silmarillion by J. R. R. Tolkien (1977, Book, Il...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
153
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2807107778194040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Silmarillion-J-R-R-Tolkien-1977-Book-Il-/280710777819?pt=US_Fiction_Books</viewItemURL><productId
154
+ type="ReferenceID">4424463</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>94509</postalCode><location>Antioch,CA,USA</location><country>US</country><shippingInfo><shippingServiceCost
155
+ currencyId="USD">3.99</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
156
+ currencyId="USD">0.99</currentPrice><convertedCurrentPrice currencyId="USD">0.99</convertedCurrentPrice><bidCount>1</bidCount><sellingState>Active</sellingState><timeLeft>P0DT3H11M44S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-16T21:37:53.000Z</startTime><endTime>2011-07-23T21:36:53.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
157
+ Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>110716344205</itemId><title>The
158
+ Lord of the Rings Trilogy J.R.R. Tolkien **All 3**</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
159
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1107163442054040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Lord-Rings-Trilogy-J-R-R-Tolkien-All-3-/110716344205?pt=US_Fiction_Books</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>11231</postalCode><location>Brooklyn,NY,USA</location><country>US</country><shippingInfo><shippingServiceCost
160
+ currencyId="USD">3.85</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>5</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
161
+ currencyId="USD">0.5</currentPrice><convertedCurrentPrice currencyId="USD">0.5</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT4H40M37S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-16T23:05:46.000Z</startTime><endTime>2011-07-23T23:05:46.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><galleryPlusPictureURL>http://galleryplus.ebayimg.com/ws/web/110716344205_1_0_1.jpg</galleryPlusPictureURL><condition><conditionId>5000</conditionId><conditionDisplayName>Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>160621441897</itemId><title>BOOK
162
+ OF LOST TALES, PART 2 - JRR TOLKIEN 1ST U.S. ED.</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
163
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1606214418974040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/BOOK-LOST-TALES-PART-2-JRR-TOLKIEN-1ST-U-S-ED-/160621441897?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>18360</postalCode><location>Stroudsburg,PA,USA</location><country>US</country><shippingInfo><shippingServiceCost
164
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
165
+ currencyId="USD">25.0</currentPrice><convertedCurrentPrice currencyId="USD">25.0</convertedCurrentPrice><bidCount>1</bidCount><sellingState>Active</sellingState><timeLeft>P0DT4H56M57S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-16T23:22:06.000Z</startTime><endTime>2011-07-23T23:22:06.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>120750818171</itemId><title>J.R.R.Tolkien
166
+ SIR GAWAIN 1925 1st uncut review copy DJ</title><globalId>EBAY-US</globalId><subtitle>SIR
167
+ GAWAIN AND THE GREEN KNIGHT rare unopened copy </subtitle><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
168
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/1207508181714040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/J-R-R-Tolkien-SIR-GAWAIN-1925-1st-uncut-review-copy-DJ-/120750818171?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>93523</postalCode><location>Edwards,CA,USA</location><country>US</country><shippingInfo><shippingServiceCost
169
+ currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>4</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
170
+ currencyId="USD">899.99</currentPrice><convertedCurrentPrice currencyId="USD">899.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT5H34M54S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T00:00:03.000Z</startTime><endTime>2011-07-24T00:00:03.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>380352746118</itemId><title>The
171
+ Hobbit, Tolkien, 1966/HC/dj, w/Author Illustrations</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
172
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/3803527461184040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Hobbit-Tolkien-1966-HC-dj-w-Author-Illustrations-/380352746118?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>92084</postalCode><location>Vista,CA,USA</location><country>US</country><shippingInfo><shippingServiceCost
173
+ currencyId="USD">3.5</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
174
+ currencyId="USD">14.97</currentPrice><convertedCurrentPrice currencyId="USD">14.97</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P13DT0H46M25S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-06T19:06:34.000Z</startTime><endTime>2011-08-05T19:11:34.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>370528003211</itemId><title>HARD
175
+ COVER JRR TOLKIEN THE BOOK OF LOST TALES PART ONE</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
176
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/3705280032114040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/HARD-COVER-JRR-TOLKIEN-BOOK-LOST-TALES-PART-ONE-/370528003211?pt=US_Fiction_Books</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>44146</postalCode><location>Bedford,OH,USA</location><country>US</country><shippingInfo><shippingServiceCost
177
+ currencyId="USD">0.0</shippingServiceCost><shippingType>Calculated</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>4</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
178
+ currencyId="USD">19.95</currentPrice><convertedCurrentPrice currencyId="USD">19.95</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT5H36M59S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-19T00:02:08.000Z</startTime><endTime>2011-07-24T00:02:08.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
179
+ Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>180696972897</itemId><title>Poems
180
+ and Stories by J. R. R. Tolkien (1994, Hardcover)</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>378</categoryId><categoryName>Nonfiction</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1806969728974040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Poems-and-Stories-J-R-R-Tolkien-1994-Hardcover-/180696972897?pt=US_Nonfiction_Book</viewItemURL><productId
181
+ type="ReferenceID">2010466</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>53593</postalCode><location>Verona,WI,USA</location><country>US</country><shippingInfo><shippingServiceCost
182
+ currencyId="USD">3.99</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
183
+ currencyId="USD">6.99</currentPrice><convertedCurrentPrice currencyId="USD">6.99</convertedCurrentPrice><bidCount>1</bidCount><sellingState>Active</sellingState><timeLeft>P0DT6H50M45S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T01:16:55.000Z</startTime><endTime>2011-07-24T01:15:54.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
184
+ Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>220815206878</itemId><title>The
185
+ Book of Lost Tales by J. R. R. Tolkien and Chris...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
186
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2208152068784040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Book-Lost-Tales-J-R-R-Tolkien-and-Chris-/220815206878?pt=US_Fiction_Books</viewItemURL><productId
187
+ type="ReferenceID">1192865</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>55126</postalCode><location>Saint
188
+ Paul,MN,USA</location><country>US</country><shippingInfo><shippingServiceCost
189
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
190
+ currencyId="USD">1.52</currentPrice><convertedCurrentPrice currencyId="USD">1.52</convertedCurrentPrice><bidCount>2</bidCount><sellingState>Active</sellingState><timeLeft>P0DT8H44M30S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T03:10:39.000Z</startTime><endTime>2011-07-24T03:09:39.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
191
+ Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>120750871402</itemId><title>The
192
+ Lord of the Rings by J. R. R. Tolkien (2001)</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
193
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/1207508714024040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Lord-Rings-J-R-R-Tolkien-2001-/120750871402?pt=US_Fiction_Books</viewItemURL><productId
194
+ type="ReferenceID">1852438</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>84106</postalCode><location>Salt
195
+ Lake City,UT,USA</location><country>US</country><shippingInfo><shippingServiceCost
196
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
197
+ currencyId="USD">9.99</currentPrice><convertedCurrentPrice currencyId="USD">9.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT8H52M53S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T03:18:02.000Z</startTime><endTime>2011-07-24T03:18:02.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>5000</conditionId><conditionDisplayName>Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>140578760550</itemId><title>J.R.R.
198
+ Tolkien by Richard L. Purtill, Richard Purtil...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
199
+ &amp; Literature</categoryName></primaryCategory><viewItemURL>http://cgi.ebay.com/J-R-R-Tolkien-Richard-L-Purtill-Richard-Purtil-/140578760550?pt=US_Fiction_Books</viewItemURL><productId
200
+ type="ReferenceID">1367229</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>95363</postalCode><location>Patterson,CA,USA</location><country>US</country><shippingInfo><shippingServiceCost
201
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
202
+ currencyId="USD">0.99</currentPrice><convertedCurrentPrice currencyId="USD">0.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT11H29M54S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T05:55:03.000Z</startTime><endTime>2011-07-24T05:55:03.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
203
+ Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>140576612433</itemId><title>History
204
+ of Middle Earth 1-12, J.R.R. Tolkien, 1st/1st</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
205
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1405766124334040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/History-Middle-Earth-1-12-J-R-R-Tolkien-1st-1st-/140576612433?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>47401</postalCode><location>Bloomington,IN,USA</location><country>US</country><shippingInfo><shippingServiceCost
206
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
207
+ currencyId="USD">1600.0</currentPrice><convertedCurrentPrice currencyId="USD">1600.0</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P19DT3H21M2S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>true</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-12T21:42:12.000Z</startTime><endTime>2011-08-11T21:46:11.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>330589620702</itemId><title>TOLKIEN
208
+ Lord of the Rings HC Readers Union Set 1st 1960</title><globalId>EBAY-AU</globalId><subtitle>EXTREMELY
209
+ RARE 1ST ED 3 Vol Set! Less than 3000 printed</subtitle><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
210
+ Books</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/3305896207024040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/TOLKIEN-Lord-Rings-HC-Readers-Union-Set-1st-1960-/330589620702?pt=AU_Fiction_Books_2</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>3156</postalCode><location>Australia</location><country>AU</country><shippingInfo><shippingType>NotSpecified</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
211
+ currencyId="AUD">300.0</currentPrice><convertedCurrentPrice currencyId="USD">325.71</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT12H21M2S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T06:46:11.000Z</startTime><endTime>2011-07-24T06:46:11.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
212
+ Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>380354511244</itemId><title>THE
213
+ SILMARILLION - J R R Tolkien</title><globalId>EBAY-AU</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
214
+ Books</categoryName></primaryCategory><viewItemURL>http://cgi.ebay.com/SILMARILLION-J-R-R-Tolkien-/380354511244?pt=AU_Fiction_Books_2</viewItemURL><paymentMethod>CIPInCheckoutEnabled</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PaymentSeeDescription</paymentMethod><paymentMethod>MoneyXferAccepted</paymentMethod><autoPay>false</autoPay><postalCode>5118</postalCode><location>Australia</location><country>AU</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>0</handlingTime><shipToLocations>AU</shipToLocations><shipToLocations>Americas</shipToLocations><shipToLocations>Europe</shipToLocations><shipToLocations>Asia</shipToLocations><shipToLocations>NZ</shipToLocations></shippingInfo><sellingStatus><currentPrice
215
+ currencyId="AUD">4.9</currentPrice><convertedCurrentPrice currencyId="USD">5.32</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT13H31M34S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-14T07:56:43.000Z</startTime><endTime>2011-07-24T07:56:43.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>5000</conditionId><conditionDisplayName>Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>130548525495</itemId><title>The
216
+ Two Towers by J. R. R. Tolkien (1986, Paperback,...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
217
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/1305485254954040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Two-Towers-J-R-R-Tolkien-1986-Paperback-/130548525495?pt=US_Fiction_Books</viewItemURL><productId
218
+ type="ReferenceID">141673</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>11550</postalCode><location>Hempstead,NY,USA</location><country>US</country><shippingInfo><shippingServiceCost
219
+ currencyId="USD">3.99</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
220
+ currencyId="USD">2.0</currentPrice><convertedCurrentPrice currencyId="USD">2.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT15H39M35S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
221
+ currencyId="USD">2.5</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">2.5</convertedBuyItNowPrice><startTime>2011-07-17T10:04:45.000Z</startTime><endTime>2011-07-24T10:04:44.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>5000</conditionId><conditionDisplayName>Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>150634416631</itemId><title>The
222
+ Fellowship Of The Ring by J. R. R. Tolkien (1989...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
223
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/1506344166314040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Fellowship-Ring-J-R-R-Tolkien-1989-/150634416631?pt=US_Fiction_Books</viewItemURL><productId
224
+ type="ReferenceID">128601</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>06413</postalCode><location>Clinton,CT,USA</location><country>US</country><shippingInfo><shippingServiceCost
225
+ currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
226
+ currencyId="USD">0.99</currentPrice><convertedCurrentPrice currencyId="USD">0.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT16H43M26S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-19T11:08:36.000Z</startTime><endTime>2011-07-24T11:08:35.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>6000</conditionId><conditionDisplayName>Acceptable</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>280478492487</itemId><title>The
227
+ Lord of the Rings by Alan Lee, J. R. R. Tolkien Box</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
228
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2804784924874040_4.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Lord-Rings-Alan-Lee-J-R-R-Tolkien-Box-/280478492487?pt=US_Fiction_Books</viewItemURL><productId
229
+ type="ReferenceID">2326081</productId><paymentMethod>PayPal</paymentMethod><autoPay>true</autoPay><location>USA</location><country>US</country><shippingInfo><shippingServiceCost
230
+ currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
231
+ currencyId="USD">53.97</currentPrice><convertedCurrentPrice currencyId="USD">53.97</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P13DT18H14M51S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2010-03-14T12:35:00.000Z</startTime><endTime>2011-08-06T12:40:00.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
232
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>150634416768</itemId><title>The
233
+ Two Towers by J. R. R. Tolkien (1986, Paperback,...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
234
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/1506344167684040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Two-Towers-J-R-R-Tolkien-1986-Paperback-/150634416768?pt=US_Fiction_Books</viewItemURL><productId
235
+ type="ReferenceID">141673</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>06413</postalCode><location>Clinton,CT,USA</location><country>US</country><shippingInfo><shippingServiceCost
236
+ currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
237
+ currencyId="USD">0.99</currentPrice><convertedCurrentPrice currencyId="USD">0.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT16H44M11S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-19T11:10:20.000Z</startTime><endTime>2011-07-24T11:09:20.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>6000</conditionId><conditionDisplayName>Acceptable</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>150634416879</itemId><title>Hobbit
238
+ or There and Back Again by J. R. R. Tolkien (...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
239
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/1506344168794040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Hobbit-There-and-Back-Again-J-R-R-Tolkien-/150634416879?pt=US_Fiction_Books</viewItemURL><productId
240
+ type="ReferenceID">115031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>06413</postalCode><location>Clinton,CT,USA</location><country>US</country><shippingInfo><shippingServiceCost
241
+ currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
242
+ currencyId="USD">0.99</currentPrice><convertedCurrentPrice currencyId="USD">0.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT16H44M49S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-19T11:10:59.000Z</startTime><endTime>2011-07-24T11:09:58.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>5000</conditionId><conditionDisplayName>Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>380355285438</itemId><title>J.
243
+ R.R. Tolkien author of the century by Tom Shippey</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
244
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/3803552854384040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/J-R-R-Tolkien-author-century-Tom-Shippey-/380355285438?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><location>United
245
+ Kingdom</location><country>GB</country><shippingInfo><shippingServiceCost currencyId="USD">19.57</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
246
+ currencyId="GBP">9.99</currentPrice><convertedCurrentPrice currencyId="USD">16.3</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT17H17M55S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T11:43:04.000Z</startTime><endTime>2011-07-24T11:43:04.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>390331818510</itemId><title>LORD
247
+ OF THE RINGS J R R TOLKIEN 13 CASSETTE AUDIO MAP</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
248
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/3903318185104040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/LORD-RINGS-J-R-R-TOLKIEN-13-CASSETTE-AUDIO-MAP-/390331818510?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><location>United
249
+ Kingdom</location><country>GB</country><shippingInfo><shippingServiceCost currencyId="USD">16.3</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
250
+ currencyId="GBP">9.99</currentPrice><convertedCurrentPrice currencyId="USD">16.3</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT19H13M6S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T13:38:15.000Z</startTime><endTime>2011-07-24T13:38:15.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>320729526450</itemId><title>Tolkien
251
+ Enterprises Stationary and Envelopes 1981</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
252
+ &amp; Literature</categoryName></primaryCategory><secondaryCategory><categoryId>29799</categoryId><categoryName>Other</categoryName></secondaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/3207295264504040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Tolkien-Enterprises-Stationary-and-Envelopes-1981-/320729526450?pt=US_Fiction_Books</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>true</autoPay><postalCode>60605</postalCode><location>Chicago,IL,USA</location><country>US</country><shippingInfo><shippingServiceCost
253
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
254
+ currencyId="USD">5.0</currentPrice><convertedCurrentPrice currencyId="USD">5.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT19H14M32S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
255
+ currencyId="USD">15.0</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">15.0</convertedBuyItNowPrice><startTime>2011-07-17T13:40:42.000Z</startTime><endTime>2011-07-24T13:39:41.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
256
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>300547535286</itemId><title>the
257
+ hobbit J.R.R. Tolkien 1st/31st HCDJ 1966 lord rings</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
258
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/3005475352864040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/hobbit-J-R-R-Tolkien-1st-31st-HCDJ-1966-lord-rings-/300547535286?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>11385</postalCode><location>Ridgewood,NY,USA</location><country>US</country><shippingInfo><shippingServiceCost
259
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
260
+ currencyId="USD">121.5</currentPrice><convertedCurrentPrice currencyId="USD">121.5</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P19DT18H44M51S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-04-14T13:05:00.000Z</startTime><endTime>2011-08-12T13:10:00.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>260819650872</itemId><title>The
261
+ Hobbit by J. R. R. Tolkien Collector''s Ed 1973 3rd</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
262
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2608196508724040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Hobbit-J-R-R-Tolkien-Collectors-Ed-1973-3rd-/260819650872?pt=US_Fiction_Books</viewItemURL><productId
263
+ type="ReferenceID">126259</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>78130</postalCode><location>New
264
+ Braunfels,TX,USA</location><country>US</country><shippingInfo><shippingServiceCost
265
+ currencyId="USD">0.0</shippingServiceCost><shippingType>Calculated</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>5</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
266
+ currencyId="USD">39.99</currentPrice><convertedCurrentPrice currencyId="USD">39.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT19H22M24S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
267
+ currencyId="USD">49.99</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">49.99</convertedBuyItNowPrice><startTime>2011-07-17T13:47:33.000Z</startTime><endTime>2011-07-24T13:47:33.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
268
+ Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>330588510473</itemId><title>J
269
+ R R TOLKIEN - The Return of the King - FIRST EDITION</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
270
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/3305885104734040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/J-R-R-TOLKIEN-Return-King-FIRST-EDITION-/330588510473?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>W51PR</postalCode><location>United
271
+ Kingdom</location><country>GB</country><shippingInfo><shippingServiceCost currencyId="USD">13.87</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>AU</shipToLocations><shipToLocations>Americas</shipToLocations><shipToLocations>Europe</shipToLocations><shipToLocations>Asia</shipToLocations></shippingInfo><sellingStatus><currentPrice
272
+ currencyId="GBP">300.0</currentPrice><convertedCurrentPrice currencyId="USD">489.36</convertedCurrentPrice><bidCount>8</bidCount><sellingState>Active</sellingState><timeLeft>P0DT19H32M47S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-14T13:57:56.000Z</startTime><endTime>2011-07-24T13:57:56.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>330589755050</itemId><title>1977
273
+ THE SILMARILLION JRR Tolkien 1st/1st HBDJ Nice</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
274
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/3305897550504040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/1977-SILMARILLION-JRR-Tolkien-1st-1st-HBDJ-Nice-/330589755050?pt=US_Fiction_Books</viewItemURL><productId
275
+ type="ReferenceID">4424463</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>28304</postalCode><location>Fayetteville,NC,USA</location><country>US</country><shippingInfo><shippingServiceCost
276
+ currencyId="USD">0.0</shippingServiceCost><shippingType>CalculatedDomesticFlatInternational</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>5</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
277
+ currencyId="USD">79.99</currentPrice><convertedCurrentPrice currencyId="USD">79.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT19H48M19S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
278
+ currencyId="USD">100.0</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">100.0</convertedBuyItNowPrice><startTime>2011-07-17T14:13:28.000Z</startTime><endTime>2011-07-24T14:13:28.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>5000</conditionId><conditionDisplayName>Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>110716571353</itemId><title>The
279
+ hobbit - Folio society</title><globalId>EBAY-FRCA</globalId><subtitle>By J.R.R.
280
+ Tolkien</subtitle><primaryCategory><categoryId>29223</categoryId><categoryName>Livres
281
+ anciens, de collection</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1107165713534040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/hobbit-Folio-society-/110716571353?pt=FR_CA_Antiquit%C3%A9s_et_livres_de_collection</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>J8A2L6</postalCode><location>Canada</location><country>CA</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
282
+ currencyId="CAD">20.0</currentPrice><convertedCurrentPrice currencyId="USD">21.05</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT20H57M10S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
283
+ currencyId="CAD">40.0</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">42.1</convertedBuyItNowPrice><startTime>2011-07-17T15:22:19.000Z</startTime><endTime>2011-07-24T15:22:19.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>250859419327</itemId><title>Unopened
284
+ Boxed Set of J.R.R Tolkien Books</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
285
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2508594193274040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Unopened-Boxed-Set-J-R-R-Tolkien-Books-/250859419327?pt=US_Fiction_Books</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>38253</postalCode><location>Rives,TN,USA</location><country>US</country><shippingInfo><shippingServiceCost
286
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
287
+ currencyId="USD">25.0</currentPrice><convertedCurrentPrice currencyId="USD">25.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT22H10M59S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
288
+ currencyId="USD">30.0</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">30.0</convertedBuyItNowPrice><startTime>2011-07-21T16:37:09.000Z</startTime><endTime>2011-07-24T16:36:08.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
289
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>330573934741</itemId><title>The
290
+ Silmarillion,J.R.R. Tolkien,GOOD Book</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
291
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/3305739347414040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Silmarillion-J-R-R-Tolkien-GOOD-Book-/330573934741?pt=US_Fiction_Books</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><location>United
292
+ Kingdom</location><country>GB</country><shippingInfo><shippingServiceCost currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
293
+ currencyId="USD">4.99</currentPrice><convertedCurrentPrice currencyId="USD">4.99</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P12DT16H43M57S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-06-06T11:04:06.000Z</startTime><endTime>2011-08-05T11:09:06.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>5000</conditionId><conditionDisplayName>Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>320729631184</itemId><title>The
294
+ Fellowship Of The Ring by J. R. R. Tolkien (1989...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
295
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/3207296311844040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Fellowship-Ring-J-R-R-Tolkien-1989-/320729631184?pt=US_Fiction_Books</viewItemURL><productId
296
+ type="ReferenceID">128601</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>31028</postalCode><location>Centerville,GA,USA</location><country>US</country><shippingInfo><shippingServiceCost
297
+ currencyId="USD">3.5</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>10</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
298
+ currencyId="USD">0.99</currentPrice><convertedCurrentPrice currencyId="USD">0.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT22H27M43S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T16:53:53.000Z</startTime><endTime>2011-07-24T16:52:52.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>5000</conditionId><conditionDisplayName>Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>120751117748</itemId><title>The
299
+ Lord of the Rings by J. R. R. Tolkien (2002, Pap...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
300
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/1207511177484040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Lord-Rings-J-R-R-Tolkien-2002-Pap-/120751117748?pt=US_Fiction_Books</viewItemURL><productId
301
+ type="ReferenceID">2305540</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>60640</postalCode><location>Chicago,IL,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>5</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
302
+ currencyId="USD">5.0</currentPrice><convertedCurrentPrice currencyId="USD">5.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT23H4M59S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T17:30:08.000Z</startTime><endTime>2011-07-24T17:30:08.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
303
+ Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>320729677599</itemId><title>A
304
+ Tolkienian Mathomium: M.T. Hooker on Tolkien Vol. 1&amp;2</title><globalId>EBAY-US</globalId><subtitle>Two-volume
305
+ Set of articles on Tolkien''s Legendarium</subtitle><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
306
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/3207296775994040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Tolkienian-Mathomium-M-T-Hooker-Tolkien-Vol-1-2-/320729677599?pt=US_Fiction_Books</viewItemURL><productId
307
+ type="ReferenceID">84728229</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>47401</postalCode><location>Bloomington,IN,USA</location><country>US</country><shippingInfo><shippingServiceCost
308
+ currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
309
+ currencyId="USD">24.95</currentPrice><convertedCurrentPrice currencyId="USD">24.95</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT23H32M59S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T17:58:08.000Z</startTime><endTime>2011-07-24T17:58:08.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
310
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>320729678579</itemId><title>Hobbit
311
+ or There and Back Again by J. R. R. Tolkien (...</title><globalId>EBAY-US</globalId><subtitle>Hobbit
312
+ graphic novels</subtitle><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
313
+ &amp; Literature</categoryName></primaryCategory><secondaryCategory><categoryId>3954</categoryId><categoryName>Other</categoryName></secondaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/3207296785794040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Hobbit-There-and-Back-Again-J-R-R-Tolkien-/320729678579?pt=US_Fiction_Books</viewItemURL><productId
314
+ type="ReferenceID">593486</productId><paymentMethod>PayPal</paymentMethod><autoPay>true</autoPay><postalCode>60605</postalCode><location>Chicago,IL,USA</location><country>US</country><shippingInfo><shippingServiceCost
315
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
316
+ currencyId="USD">10.0</currentPrice><convertedCurrentPrice currencyId="USD">10.0</convertedCurrentPrice><bidCount>1</bidCount><sellingState>Active</sellingState><timeLeft>P0DT23H33M58S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T18:00:07.000Z</startTime><endTime>2011-07-24T17:59:07.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><galleryPlusPictureURL>http://galleryplus.ebayimg.com/ws/web/320729678579_1_0_1.jpg</galleryPlusPictureURL><condition><conditionId>2750</conditionId><conditionDisplayName>Like
317
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>110711534232</itemId><title>J.R.R
318
+ TOLKIEN THE FELLOWSHIP TOWERS RETURN SIGNED x3</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
319
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/1107115342324040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/J-R-R-TOLKIEN-FELLOWSHIP-TOWERS-RETURN-SIGNED-x3-/110711534232?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><location>United
320
+ Kingdom</location><country>GB</country><shippingInfo><shippingServiceCost currencyId="USD">89.72</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>4</handlingTime><shipToLocations>AU</shipToLocations><shipToLocations>Americas</shipToLocations><shipToLocations>Europe</shipToLocations><shipToLocations>Asia</shipToLocations></shippingInfo><sellingStatus><currentPrice
321
+ currencyId="GBP">560.0</currentPrice><convertedCurrentPrice currencyId="USD">913.47</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P12DT23H38M51S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>true</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-06T18:04:00.000Z</startTime><endTime>2011-08-05T18:04:00.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>370527675112</itemId><title>SILMARILLION
322
+ JRR &amp; CHRISTOPHER TOLKIEN Ted Nasmith 2001</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
323
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/3705276751124040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/SILMARILLION-JRR-CHRISTOPHER-TOLKIEN-Ted-Nasmith-2001-/370527675112?pt=US_Fiction_Books</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>78589</postalCode><location>San
324
+ Juan,TX,USA</location><country>US</country><shippingInfo><shippingServiceCost
325
+ currencyId="USD">0.0</shippingServiceCost><shippingType>Calculated</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>true</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
326
+ currencyId="USD">6.95</currentPrice><convertedCurrentPrice currencyId="USD">6.95</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT23H34M42S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
327
+ currencyId="USD">9.99</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">9.99</convertedBuyItNowPrice><startTime>2011-07-17T17:59:51.000Z</startTime><endTime>2011-07-24T17:59:51.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
328
+ Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>320729679311</itemId><title>The
329
+ Hobbitonian: M.T. Hooker on J.R.R. Tolkien - Vol. 2</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
330
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/3207296793114040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Hobbitonian-M-T-Hooker-J-R-R-Tolkien-Vol-2-/320729679311?pt=US_Fiction_Books</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>47401</postalCode><location>Bloomington,IN,USA</location><country>US</country><shippingInfo><shippingServiceCost
331
+ currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
332
+ currencyId="USD">14.95</currentPrice><convertedCurrentPrice currencyId="USD">14.95</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT23H35M1S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T18:00:10.000Z</startTime><endTime>2011-07-24T18:00:10.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
333
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>250857142132</itemId><title>RARE
334
+ Lord of the Rings by J. R. R. Tolkien 1965, 1966</title><globalId>EBAY-US</globalId><subtitle>Collectors
335
+ Edition w/ Box - Hardback - 440 Pages &amp; Map</subtitle><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
336
+ &amp; Literature</categoryName></primaryCategory><secondaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
337
+ &amp; Collectible</categoryName></secondaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2508571421324040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/RARE-Lord-Rings-J-R-R-Tolkien-1965-1966-/250857142132?pt=US_Fiction_Books</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>03825</postalCode><location>Barrington,NH,USA</location><country>US</country><shippingInfo><shippingServiceCost
338
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
339
+ currencyId="USD">31.01</currentPrice><convertedCurrentPrice currencyId="USD">31.01</convertedCurrentPrice><bidCount>10</bidCount><sellingState>Active</sellingState><timeLeft>P0DT23H48M55S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T18:14:04.000Z</startTime><endTime>2011-07-24T18:14:04.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><galleryPlusPictureURL>http://galleryplus.ebayimg.com/ws/web/250857142132_1_0_1.jpg</galleryPlusPictureURL><condition><conditionId>2750</conditionId><conditionDisplayName>Like
340
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>140580106521</itemId><title>TOLKIEN:
341
+ LORD OF THE RINGS - RARE BOXED UK 3 VOLS HB HC</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
342
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1405801065214040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/TOLKIEN-LORD-RINGS-RARE-BOXED-UK-3-VOLS-HB-HC-/140580106521?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><location>United
343
+ Kingdom</location><country>GB</country><shippingInfo><shippingType>NotSpecified</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
344
+ currencyId="GBP">69.99</currentPrice><convertedCurrentPrice currencyId="USD">114.17</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT0H1M46S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-19T18:26:55.000Z</startTime><endTime>2011-07-24T18:26:55.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>350478767609</itemId><title>J.R.R.
345
+ TOLKIEN LORD OF THE RINGS TRILOGY+THE HOBBIT+DVD</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
346
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/3504787676094040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/J-R-R-TOLKIEN-LORD-RINGS-TRILOGY-THE-HOBBIT-DVD-/350478767609?pt=US_Fiction_Books</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>28791</postalCode><location>Hendersonville,NC,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
347
+ currencyId="USD">4.0</currentPrice><convertedCurrentPrice currencyId="USD">4.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT0H6M32S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-19T18:32:43.000Z</startTime><endTime>2011-07-24T18:31:41.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
348
+ Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>310290814645</itemId><title>1954~Lord
349
+ Of the Rings~TOLKIEN~Three Volumes~1st 1st</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
350
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/3102908146454040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/1954-Lord-Rings-TOLKIEN-Three-Volumes-1st-1st-/310290814645?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>SP102UB</postalCode><location>United
351
+ Kingdom</location><country>GB</country><shippingInfo><shippingServiceCost currencyId="USD">48.85</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
352
+ currencyId="GBP">5500.0</currentPrice><convertedCurrentPrice currencyId="USD">8971.6</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P0DT2H12M44S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>true</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-01-24T20:32:53.000Z</startTime><endTime>2011-07-23T20:37:53.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>250857160067</itemId><title>TOLKIEN;
353
+ RETURN OF THE KING; 1st Ed 3rd imp'' 1957 HB+DJ</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
354
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2508571600674040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/TOLKIEN-RETURN-KING-1st-Ed-3rd-imp-1957-HB-DJ-/250857160067?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><postalCode>WD186GJ</postalCode><location>United
355
+ Kingdom</location><country>GB</country><shippingInfo><shippingType>NotSpecified</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
356
+ currencyId="GBP">399.99</currentPrice><convertedCurrentPrice currencyId="USD">652.46</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT0H9M21S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T18:34:30.000Z</startTime><endTime>2011-07-24T18:34:30.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>120751166349</itemId><title>Unfinished
357
+ Tales by J.R.R. Tolkien 1980 Hardcover LOTR</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
358
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1207511663494040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Unfinished-Tales-J-R-R-Tolkien-1980-Hardcover-LOTR-/120751166349?pt=US_Fiction_Books</viewItemURL><productId
359
+ type="ReferenceID">4414287</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>48146</postalCode><location>Lincoln
360
+ Park,MI,USA</location><country>US</country><shippingInfo><shippingServiceCost
361
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
362
+ currencyId="USD">8.95</currentPrice><convertedCurrentPrice currencyId="USD">8.95</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT0H22M56S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
363
+ currencyId="USD">13.95</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">13.95</convertedBuyItNowPrice><startTime>2011-07-17T18:48:05.000Z</startTime><endTime>2011-07-24T18:48:05.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
364
+ Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>110716689839</itemId><title>The
365
+ Lord of the Rings J.R.R. Tolkien 3 Book Set</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
366
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/1107166898394040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Lord-Rings-J-R-R-Tolkien-3-Book-Set-/110716689839?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>92020</postalCode><location>El
367
+ Cajon,CA,USA</location><country>US</country><shippingInfo><shippingServiceCost
368
+ currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
369
+ currencyId="USD">69.99</currentPrice><convertedCurrentPrice currencyId="USD">69.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT0H25M15S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T18:50:24.000Z</startTime><endTime>2011-07-24T18:50:24.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>370527690568</itemId><title>TOLKIEN;
370
+ THE TWO TOWERS; 2nd Edition 1st imp'' 1966.</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
371
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/3705276905684040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/TOLKIEN-TWO-TOWERS-2nd-Edition-1st-imp-1966-/370527690568?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><postalCode>WD186GJ</postalCode><location>United
372
+ Kingdom</location><country>GB</country><shippingInfo><shippingType>NotSpecified</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
373
+ currencyId="GBP">49.99</currentPrice><convertedCurrentPrice currencyId="USD">81.54</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT0H26M35S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T18:51:44.000Z</startTime><endTime>2011-07-24T18:51:44.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>180693846320</itemId><title>The
374
+ Hobbit J. R. R. Tolkien Houghton Mifflin Books 1997</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
375
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/1806938463204040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Hobbit-J-R-R-Tolkien-Houghton-Mifflin-Books-1997-/180693846320?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>true</autoPay><postalCode>79936</postalCode><location>El
376
+ Paso,TX,USA</location><country>US</country><shippingInfo><shippingServiceCost
377
+ currencyId="USD">0.0</shippingServiceCost><shippingType>Calculated</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
378
+ currencyId="USD">31.99</currentPrice><convertedCurrentPrice currencyId="USD">31.99</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P16DT10H36M34S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>true</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-10T04:56:43.000Z</startTime><endTime>2011-08-09T05:01:43.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>270785185353</itemId><title>The
379
+ Return Of The King by J. R. R. Tolkien (1999, Pa...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
380
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2707851853534040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Return-King-J-R-R-Tolkien-1999-Pa-/270785185353?pt=US_Fiction_Books</viewItemURL><productId
381
+ type="ReferenceID">124238</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>92109</postalCode><location>San
382
+ Diego,CA,USA</location><country>US</country><shippingInfo><shippingServiceCost
383
+ currencyId="USD">1.95</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
384
+ currencyId="USD">0.01</currentPrice><convertedCurrentPrice currencyId="USD">0.01</convertedCurrentPrice><bidCount>1</bidCount><sellingState>Active</sellingState><timeLeft>P1DT0H27M48S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-19T18:53:58.000Z</startTime><endTime>2011-07-24T18:52:57.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
385
+ Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>250857185954</itemId><title>TOLKIEN;
386
+ RETURN OF THE KING; 2nd Ed 3rd 1968 HB+DJ, VG+</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
387
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2508571859544040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/TOLKIEN-RETURN-KING-2nd-Ed-3rd-1968-HB-DJ-VG-/250857185954?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><postalCode>WD186GJ</postalCode><location>United
388
+ Kingdom</location><country>GB</country><shippingInfo><shippingType>NotSpecified</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
389
+ currencyId="GBP">29.99</currentPrice><convertedCurrentPrice currencyId="USD">48.92</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT0H38M29S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T19:03:38.000Z</startTime><endTime>2011-07-24T19:03:38.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>370527695237</itemId><title>TOLKIEN;
390
+ FELLOWSHIP OF THE RING; 2nd Ed 1st 1966 HB+DJ</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
391
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/3705276952374040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/TOLKIEN-FELLOWSHIP-RING-2nd-Ed-1st-1966-HB-DJ-/370527695237?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><postalCode>WD186GJ</postalCode><location>United
392
+ Kingdom</location><country>GB</country><shippingInfo><shippingType>NotSpecified</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
393
+ currencyId="GBP">49.99</currentPrice><convertedCurrentPrice currencyId="USD">81.54</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT0H41M50S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T19:06:59.000Z</startTime><endTime>2011-07-24T19:06:59.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>140580121125</itemId><title>TOLKIEN:
394
+ LORD OF THE RINGS - RIDGED LEATHER 1/1 HB HC</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
395
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1405801211254040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/TOLKIEN-LORD-RINGS-RIDGED-LEATHER-1-1-HB-HC-/140580121125?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><location>United
396
+ Kingdom</location><country>GB</country><shippingInfo><shippingType>NotSpecified</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
397
+ currencyId="GBP">39.99</currentPrice><convertedCurrentPrice currencyId="USD">65.23</convertedCurrentPrice><bidCount>1</bidCount><sellingState>Active</sellingState><timeLeft>P1DT0H44M7S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-19T19:09:16.000Z</startTime><endTime>2011-07-24T19:09:16.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>370527696200</itemId><title>TOLKIEN;
398
+ FELLOWSHIP OF THE RING; 2nd Ed 1st imp'' 1966.</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
399
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/3705276962004040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/TOLKIEN-FELLOWSHIP-RING-2nd-Ed-1st-imp-1966-/370527696200?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><postalCode>WD186GJ</postalCode><location>United
400
+ Kingdom</location><country>GB</country><shippingInfo><shippingType>NotSpecified</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
401
+ currencyId="GBP">24.99</currentPrice><convertedCurrentPrice currencyId="USD">40.76</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT0H44M58S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T19:10:07.000Z</startTime><endTime>2011-07-24T19:10:07.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>230616691137</itemId><title>J.R.R
402
+ .Tolkien, The Hobbit, 1st edition of 2nd folio</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
403
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2306166911374040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/J-R-R-Tolkien-Hobbit-1st-edition-2nd-folio-/230616691137?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><paymentMethod>PaymentSeeDescription</paymentMethod><autoPay>false</autoPay><postalCode>SY209EE</postalCode><location>United
404
+ Kingdom</location><country>GB</country><shippingInfo><shippingServiceCost currencyId="USD">21.21</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
405
+ currencyId="GBP">49.0</currentPrice><convertedCurrentPrice currencyId="USD">79.93</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P7DT14H6M43S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>true</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-05-02T08:26:52.000Z</startTime><endTime>2011-07-31T08:31:52.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>270783951558</itemId><title>TOLKIEN
406
+ - Authorized Bio by Humphrey Carpenter</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
407
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2707839515584040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/TOLKIEN-Authorized-Bio-Humphrey-Carpenter-/270783951558?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>19403</postalCode><location>Norristown,PA,USA</location><country>US</country><shippingInfo><shippingServiceCost
408
+ currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
409
+ currencyId="USD">4.0</currentPrice><convertedCurrentPrice currencyId="USD">4.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT1H0M52S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T19:26:01.000Z</startTime><endTime>2011-07-24T19:26:01.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>140580128322</itemId><title>J.R.R.
410
+ TOLKIEN: THE HOBBIT - 1/1 HB HC RIDGED LEATHER!!</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
411
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/1405801283224040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/J-R-R-TOLKIEN-HOBBIT-1-1-HB-HC-RIDGED-LEATHER-/140580128322?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><location>United
412
+ Kingdom</location><country>GB</country><shippingInfo><shippingType>NotSpecified</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
413
+ currencyId="GBP">34.99</currentPrice><convertedCurrentPrice currencyId="USD">57.08</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT1H5M55S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-19T19:31:04.000Z</startTime><endTime>2011-07-24T19:31:04.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>250857221643</itemId><title>The
414
+ Hobbit by J.R.R. Tolkien Collectors Ed Like New -CC</title><globalId>EBAY-US</globalId><subtitle>All
415
+ proceeds go to the animals at the Yolo County SPCA</subtitle><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
416
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2508572216434040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Hobbit-J-R-R-Tolkien-Collectors-Ed-Like-New-CC-/250857221643?pt=US_Fiction_Books</viewItemURL><productId
417
+ type="ReferenceID">126259</productId><paymentMethod>CashOnPickup</paymentMethod><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>95616</postalCode><location>Davis,CA,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>5</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
418
+ currencyId="USD">14.94</currentPrice><convertedCurrentPrice currencyId="USD">14.94</convertedCurrentPrice><bidCount>7</bidCount><sellingState>Active</sellingState><timeLeft>P1DT1H17M43S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T19:42:52.000Z</startTime><endTime>2011-07-24T19:42:52.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
419
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>200631545845</itemId><title>TOLKIEN:
420
+ THE HOBBIT- FOLIO SLIPCASED HB - NEW SEALED!</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
421
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2006315458454040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/TOLKIEN-HOBBIT-FOLIO-SLIPCASED-HB-NEW-SEALED-/200631545845?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><location>United
422
+ Kingdom</location><country>GB</country><shippingInfo><shippingType>NotSpecified</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
423
+ currencyId="GBP">24.99</currentPrice><convertedCurrentPrice currencyId="USD">40.76</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT1H26M50S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T19:51:59.000Z</startTime><endTime>2011-07-24T19:51:59.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>140468691778</itemId><title>The
424
+ Hobbit J.R.R. Tolkien</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
425
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/1404686917784040_3.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Hobbit-J-R-R-Tolkien-/140468691778?pt=US_Fiction_Books</viewItemURL><charityId>36284</charityId><productId
426
+ type="ReferenceID">115031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><location>USA</location><country>US</country><shippingInfo><shippingServiceCost
427
+ currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
428
+ currencyId="USD">4.99</currentPrice><convertedCurrentPrice currencyId="USD">4.99</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P25DT1H13M35S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2010-10-21T19:33:44.000Z</startTime><endTime>2011-08-17T19:38:44.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>5000</conditionId><conditionDisplayName>Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>200631546777</itemId><title>TOLKIEN:
429
+ PICTURES - UK 1ST EDITION / 1ST PRINT GA&amp;U HB!</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
430
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2006315467774040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/TOLKIEN-PICTURES-UK-1ST-EDITION-1ST-PRINT-GA-U-HB-/200631546777?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><location>United
431
+ Kingdom</location><country>GB</country><shippingInfo><shippingType>NotSpecified</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
432
+ currencyId="GBP">119.99</currentPrice><convertedCurrentPrice currencyId="USD">195.73</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT1H28M41S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T19:53:50.000Z</startTime><endTime>2011-07-24T19:53:50.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>180699296753</itemId><title>The
433
+ Hobbit and the Lord of the Rings by Tolkien </title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
434
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1806992967534040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Hobbit-and-Lord-Rings-Tolkien-/180699296753?pt=US_Fiction_Books</viewItemURL><productId
435
+ type="ReferenceID">114459</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>35180</postalCode><location>Warrior,AL,USA</location><country>US</country><shippingInfo><shippingServiceCost
436
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
437
+ currencyId="USD">25.0</currentPrice><convertedCurrentPrice currencyId="USD">25.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT1H29M17S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-21T19:54:26.000Z</startTime><endTime>2011-07-24T19:54:26.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
438
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>200631547851</itemId><title>TOLKIEN:
439
+ THE SILMARILLION - LTD EDITION COLLECTOR''S BOX</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
440
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2006315478514040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/TOLKIEN-SILMARILLION-LTD-EDITION-COLLECTORS-BOX-/200631547851?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><location>United
441
+ Kingdom</location><country>GB</country><shippingInfo><shippingType>NotSpecified</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>true</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
442
+ currencyId="GBP">59.99</currentPrice><convertedCurrentPrice currencyId="USD">97.86</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT1H30M44S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T19:55:53.000Z</startTime><endTime>2011-07-24T19:55:53.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>200631549741</itemId><title>TOLKIEN:
443
+ LORD OF THE RINGS - FIRST PRINT - GAU HB DW</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
444
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2006315497414040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/TOLKIEN-LORD-RINGS-FIRST-PRINT-GAU-HB-DW-/200631549741?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><location>United
445
+ Kingdom</location><country>GB</country><shippingInfo><shippingType>NotSpecified</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
446
+ currencyId="GBP">149.99</currentPrice><convertedCurrentPrice currencyId="USD">244.66</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT1H34M10S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T19:59:19.000Z</startTime><endTime>2011-07-24T19:59:19.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>170668267342</itemId><title>FOLIO
447
+ SOCIETY - JRR TOLKIEN - THE HOBBITT - HB</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
448
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/1706682673424040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/FOLIO-SOCIETY-JRR-TOLKIEN-HOBBITT-HB-/170668267342?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><postalCode>CH431XB</postalCode><location>United
449
+ Kingdom</location><country>GB</country><shippingInfo><shippingType>NotSpecified</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
450
+ currencyId="GBP">9.99</currentPrice><convertedCurrentPrice currencyId="USD">16.3</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT1H39M9S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-14T20:04:18.000Z</startTime><endTime>2011-07-24T20:04:18.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>380343891965</itemId><title>1966
451
+ 31st print THE HOBBIT J. R. R. TOLKIEN w/dj</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
452
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/3803438919654040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/1966-31st-print-HOBBIT-J-R-R-TOLKIEN-w-dj-/380343891965?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>14052</postalCode><location>East
453
+ Aurora,NY,USA</location><country>US</country><shippingInfo><shippingServiceCost
454
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
455
+ currencyId="USD">35.0</currentPrice><convertedCurrentPrice currencyId="USD">35.0</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P6DT21H47M21S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-05-31T16:07:30.000Z</startTime><endTime>2011-07-30T16:12:30.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>190556337780</itemId><title>J.R.R.
456
+ Tolkien THE LEGEND OF SIGURD &amp; GUDRUN 1st ed 1/1</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
457
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/1905563377804040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/J-R-R-Tolkien-LEGEND-SIGURD-GUDRUN-1st-ed-1-1-/190556337780?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><postalCode>NG71LR</postalCode><location>United
458
+ Kingdom</location><country>GB</country><shippingInfo><shippingServiceCost currencyId="USD">13.05</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
459
+ currencyId="GBP">9.99</currentPrice><convertedCurrentPrice currencyId="USD">16.3</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT1H42M26S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
460
+ currencyId="GBP">16.99</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">27.71</convertedBuyItNowPrice><startTime>2011-07-17T20:07:35.000Z</startTime><endTime>2011-07-24T20:07:35.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>140579221787</itemId><title>The
461
+ COMPLETE GUIDE to MIDDLE EARTH Tolkien by Foster</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
462
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/1405792217874040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/COMPLETE-GUIDE-MIDDLE-EARTH-Tolkien-Foster-/140579221787?pt=US_Fiction_Books</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>35763</postalCode><location>Owens
463
+ Cross Roads,AL,USA</location><country>US</country><shippingInfo><shippingServiceCost
464
+ currencyId="USD">3.85</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
465
+ currencyId="USD">4.99</currentPrice><convertedCurrentPrice currencyId="USD">4.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT1H52M9S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
466
+ currencyId="USD">7.99</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">7.99</convertedBuyItNowPrice><startTime>2011-07-17T20:17:18.000Z</startTime><endTime>2011-07-24T20:17:18.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
467
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>350478336649</itemId><title>UNFINISHED
468
+ TALES By J. R. R. TOLKIEN - HC/DJ - 1980</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
469
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/3504783366494040_2.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/UNFINISHED-TALES-J-R-R-TOLKIEN-HC-DJ-1980-/350478336649?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>98626</postalCode><location>Kelso,WA,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
470
+ currencyId="USD">6.99</currentPrice><convertedCurrentPrice currencyId="USD">6.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT2H15M53S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T20:41:02.000Z</startTime><endTime>2011-07-24T20:41:02.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>370527721323</itemId><title>TOLKIEN;
471
+ LORD OF THE RINGS TRILOGY 2nd Ed 1966,68,68.</title><globalId>EBAY-GB</globalId><subtitle>Nr
472
+ FINE CONDITION; 1st impression + 2, 3rd impressions.</subtitle><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
473
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/3705277213234040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/TOLKIEN-LORD-RINGS-TRILOGY-2nd-Ed-1966-68-68-/370527721323?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><postalCode>WD186GJ</postalCode><location>United
474
+ Kingdom</location><country>GB</country><shippingInfo><shippingType>NotSpecified</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
475
+ currencyId="GBP">89.99</currentPrice><convertedCurrentPrice currencyId="USD">146.79</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT2H19M26S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T20:44:35.000Z</startTime><endTime>2011-07-24T20:44:35.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>250858516150</itemId><title>J.R.R.
476
+ Tolkien - The Two Towers - HC US 1st NR</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
477
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2508585161504040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/J-R-R-Tolkien-Two-Towers-HC-US-1st-NR-/250858516150?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>29680</postalCode><location>Simpsonville,SC,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>Americas</shipToLocations><shipToLocations>Europe</shipToLocations></shippingInfo><sellingStatus><currentPrice
478
+ currencyId="USD">74.79</currentPrice><convertedCurrentPrice currencyId="USD">74.79</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P26DT4H53M59S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>true</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-19T23:14:08.000Z</startTime><endTime>2011-08-18T23:19:08.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>120751241559</itemId><title>Return
479
+ of the King by J. R. R. Tolkien (1993, Paperb...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
480
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/1207512415594040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Return-King-J-R-R-Tolkien-1993-Paperb-/120751241559?pt=US_Fiction_Books</viewItemURL><productId
481
+ type="ReferenceID">114429</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>55314</postalCode><location>Buffalo
482
+ Lake,MN,USA</location><country>US</country><shippingInfo><shippingServiceCost
483
+ currencyId="USD">2.99</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
484
+ currencyId="USD">0.99</currentPrice><convertedCurrentPrice currencyId="USD">0.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT2H24M7S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T20:49:16.000Z</startTime><endTime>2011-07-24T20:49:16.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
485
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>250857283884</itemId><title>TOLKIEN;
486
+ FELLOWSHIP OF THE RING; 1st Ed 5th 1956 HB+DJ</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
487
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2508572838844040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/TOLKIEN-FELLOWSHIP-RING-1st-Ed-5th-1956-HB-DJ-/250857283884?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><postalCode>WD186GJ</postalCode><location>United
488
+ Kingdom</location><country>GB</country><shippingInfo><shippingType>NotSpecified</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
489
+ currencyId="GBP">199.99</currentPrice><convertedCurrentPrice currencyId="USD">326.22</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT2H37M11S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T21:02:20.000Z</startTime><endTime>2011-07-24T21:02:20.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>320729832525</itemId><title>Mr.
490
+ Bliss by J. R. R. Tolkien (1983, Hardcover)</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
491
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/3207298325254040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Mr-Bliss-J-R-R-Tolkien-1983-Hardcover-/320729832525?pt=US_Fiction_Books</viewItemURL><productId
492
+ type="ReferenceID">131880</productId><paymentMethod>PayPal</paymentMethod><autoPay>true</autoPay><postalCode>60605</postalCode><location>Chicago,IL,USA</location><country>US</country><shippingInfo><shippingServiceCost
493
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
494
+ currencyId="USD">5.0</currentPrice><convertedCurrentPrice currencyId="USD">5.0</convertedCurrentPrice><bidCount>1</bidCount><sellingState>Active</sellingState><timeLeft>P1DT2H44M31S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T21:10:41.000Z</startTime><endTime>2011-07-24T21:09:40.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>5000</conditionId><conditionDisplayName>Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>320729833248</itemId><title>The
495
+ Letters of J. R. R. Tolkien by Humphrey Carpente...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
496
+ &amp; Literature</categoryName></primaryCategory><secondaryCategory><categoryId>378</categoryId><categoryName>Nonfiction</categoryName></secondaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/3207298332484040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Letters-J-R-R-Tolkien-Humphrey-Carpente-/320729833248?pt=US_Fiction_Books</viewItemURL><productId
497
+ type="ReferenceID">140606</productId><paymentMethod>PayPal</paymentMethod><autoPay>true</autoPay><postalCode>60605</postalCode><location>Chicago,IL,USA</location><country>US</country><shippingInfo><shippingServiceCost
498
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
499
+ currencyId="USD">5.0</currentPrice><convertedCurrentPrice currencyId="USD">5.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT2H45M56S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
500
+ currencyId="USD">25.0</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">25.0</convertedBuyItNowPrice><startTime>2011-07-17T21:11:06.000Z</startTime><endTime>2011-07-24T21:11:05.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
501
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>250857292338</itemId><title>TOLKIEN;
502
+ THE TWO TOWERS; 1st Ed 4th imp'' 1956 HB+DJ</title><globalId>EBAY-GB</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
503
+ &amp; Collectable</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2508572923384040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/TOLKIEN-TWO-TOWERS-1st-Ed-4th-imp-1956-HB-DJ-/250857292338?pt=Antiquarian_Books_UK</viewItemURL><paymentMethod>MOCC</paymentMethod><paymentMethod>PayPal</paymentMethod><paymentMethod>PersonalCheck</paymentMethod><autoPay>false</autoPay><postalCode>WD186GJ</postalCode><location>United
504
+ Kingdom</location><country>GB</country><shippingInfo><shippingType>NotSpecified</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
505
+ currencyId="GBP">299.99</currentPrice><convertedCurrentPrice currencyId="USD">489.34</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT2H49M17S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T21:14:26.000Z</startTime><endTime>2011-07-24T21:14:26.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>390326206266</itemId><title>The
506
+ Hobbit .. J.R.R. Tolkien 1986</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
507
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/3903262062664040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Hobbit-J-R-R-Tolkien-1986-/390326206266?pt=US_Fiction_Books</viewItemURL><productId
508
+ type="ReferenceID">115031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><location>USA</location><country>US</country><shippingInfo><shippingServiceCost
509
+ currencyId="USD">3.99</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
510
+ currencyId="USD">1.0</currentPrice><convertedCurrentPrice currencyId="USD">1.0</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P2DT12H23M29S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-06-26T06:43:38.000Z</startTime><endTime>2011-07-26T06:48:38.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>5000</conditionId><conditionDisplayName>Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>400231043385</itemId><title>Tree
511
+ and Leaf, J R R Tolkien, 1st/1st w Dj, Scarce</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
512
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/4002310433854040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Tree-and-Leaf-J-R-R-Tolkien-1st-1st-w-Dj-Scarce-/400231043385?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>24957</postalCode><location>Maxwelton,WV,USA</location><country>US</country><shippingInfo><shippingServiceCost
513
+ currencyId="USD">4.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
514
+ currencyId="USD">39.99</currentPrice><convertedCurrentPrice currencyId="USD">39.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT2H50M42S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-21T21:15:51.000Z</startTime><endTime>2011-07-24T21:15:51.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>180697466822</itemId><title>TOLKIEN,
515
+ LORD OF THE RINGS, pub. Unwin &amp; Hyman 1987</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>29223</categoryId><categoryName>Antiquarian
516
+ &amp; Collectible</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/1806974668224040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/TOLKIEN-LORD-RINGS-pub-Unwin-Hyman-1987-/180697466822?pt=Antiquarian_Collectible</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>true</autoPay><postalCode>53593</postalCode><location>Verona,WI,USA</location><country>US</country><shippingInfo><shippingServiceCost
517
+ currencyId="USD">3.99</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>4</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
518
+ currencyId="USD">59.99</currentPrice><convertedCurrentPrice currencyId="USD">59.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT2H51M42S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
519
+ currencyId="USD">79.99</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">79.99</convertedBuyItNowPrice><startTime>2011-07-17T21:17:52.000Z</startTime><endTime>2011-07-24T21:16:51.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>170669623531</itemId><title>A
520
+ Tolkien Bestiary by David Day (1990, Hardcover)</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
521
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/1706696235314040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Tolkien-Bestiary-David-Day-1990-Hardcover-/170669623531?pt=US_Fiction_Books</viewItemURL><productId
522
+ type="ReferenceID">672410</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>45223</postalCode><location>Cincinnati,OH,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
523
+ currencyId="USD">19.99</currentPrice><convertedCurrentPrice currencyId="USD">19.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT2H52M2S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T21:17:11.000Z</startTime><endTime>2011-07-24T21:17:11.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
524
+ New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>300578763390</itemId><title>The
525
+ Hobbit by JRR Tolkien</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>377</categoryId><categoryName>Fiction
526
+ &amp; Literature</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/3005787633904040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Hobbit-JRR-Tolkien-/300578763390?pt=US_Fiction_Books</viewItemURL><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>68025</postalCode><location>Fremont,NE,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
527
+ currencyId="USD">0.25</currentPrice><convertedCurrentPrice currencyId="USD">0.25</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT3H12M46S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T21:37:55.000Z</startTime><endTime>2011-07-24T21:37:55.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>6000</conditionId><conditionDisplayName>Acceptable</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item></searchResult><paginationOutput><pageNumber>1</pageNumber><entriesPerPage>100</entriesPerPage><totalPages>46</totalPages><totalEntries>4563</totalEntries></paginationOutput><itemSearchURL>http://shop.ebay.com/i.html?_nkw=tolkien&amp;_ddo=1&amp;_ipg=100&amp;_pgn=1</itemSearchURL></findItemsAdvancedResponse>'
528
+ http_version: '1.1'