app_store_pricing_matrix 2.1.0 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +7 -0
  2. data/.travis.yml +2 -9
  3. data/README.md +33 -30
  4. data/Rakefile +6 -23
  5. data/app_store_pricing_matrix.gemspec +10 -9
  6. data/input/pricing_matrix.json +1 -0
  7. data/lib/app_store_pricing_matrix.rb +62 -21
  8. data/spec/app_store_pricing_matrix_spec.rb +29 -72
  9. metadata +31 -102
  10. data/input/aed.txt +0 -2
  11. data/input/aud.txt +0 -1
  12. data/input/cad.txt +0 -1
  13. data/input/chf.txt +0 -1
  14. data/input/cny.txt +0 -1
  15. data/input/dkk.txt +0 -1
  16. data/input/eur.txt +0 -1
  17. data/input/gbp.txt +0 -1
  18. data/input/hkd.txt +0 -1
  19. data/input/idr.txt +0 -1
  20. data/input/ils.txt +0 -1
  21. data/input/inr.txt +0 -1
  22. data/input/jpy.txt +0 -1
  23. data/input/mxn.txt +0 -1
  24. data/input/nok.txt +0 -1
  25. data/input/nzd.txt +0 -1
  26. data/input/rub.txt +0 -2
  27. data/input/sar.txt +0 -2
  28. data/input/sek.txt +0 -1
  29. data/input/sgd.txt +0 -1
  30. data/input/try.txt +0 -1
  31. data/input/twd.txt +0 -1
  32. data/input/usd.txt +0 -1
  33. data/input/zar.txt +0 -2
  34. data/lib/prices/aed +0 -88
  35. data/lib/prices/aed_pro +0 -88
  36. data/lib/prices/aud +0 -88
  37. data/lib/prices/aud_pro +0 -88
  38. data/lib/prices/cad +0 -88
  39. data/lib/prices/cad_pro +0 -88
  40. data/lib/prices/chf +0 -88
  41. data/lib/prices/chf_pro +0 -88
  42. data/lib/prices/cny +0 -88
  43. data/lib/prices/cny_pro +0 -88
  44. data/lib/prices/dkk +0 -88
  45. data/lib/prices/dkk_pro +0 -88
  46. data/lib/prices/eur +0 -88
  47. data/lib/prices/eur_pro +0 -88
  48. data/lib/prices/gbp +0 -88
  49. data/lib/prices/gbp_pro +0 -88
  50. data/lib/prices/hkd +0 -88
  51. data/lib/prices/hkd_pro +0 -88
  52. data/lib/prices/idr +0 -88
  53. data/lib/prices/idr_pro +0 -88
  54. data/lib/prices/ils +0 -88
  55. data/lib/prices/ils_pro +0 -88
  56. data/lib/prices/inr +0 -88
  57. data/lib/prices/inr_pro +0 -88
  58. data/lib/prices/jpy +0 -88
  59. data/lib/prices/jpy_pro +0 -88
  60. data/lib/prices/mxn +0 -88
  61. data/lib/prices/mxn_pro +0 -88
  62. data/lib/prices/nok +0 -88
  63. data/lib/prices/nok_pro +0 -88
  64. data/lib/prices/nzd +0 -88
  65. data/lib/prices/nzd_pro +0 -88
  66. data/lib/prices/rub +0 -88
  67. data/lib/prices/rub_pro +0 -88
  68. data/lib/prices/sar +0 -88
  69. data/lib/prices/sar_pro +0 -88
  70. data/lib/prices/sek +0 -88
  71. data/lib/prices/sek_pro +0 -88
  72. data/lib/prices/sgd +0 -88
  73. data/lib/prices/sgd_pro +0 -88
  74. data/lib/prices/try +0 -88
  75. data/lib/prices/try_pro +0 -88
  76. data/lib/prices/twd +0 -88
  77. data/lib/prices/twd_pro +0 -88
  78. data/lib/prices/usd +0 -88
  79. data/lib/prices/usd_pro +0 -88
  80. data/lib/prices/zar +0 -88
  81. data/lib/prices/zar_pro +0 -88
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 53a525f17423229adaad37b52842e1372e9eecde
4
+ data.tar.gz: f633395f077384b335245f5e41dbc4a7a427aa74
5
+ SHA512:
6
+ metadata.gz: 4d0beadde5af678e81c06abcd2d0a6267b071d7fc0fab9cd44d0a213e094574bc3535c701a34d4e9e3b2a8c407177dd3b14d04f54704039eaa5a3537f7ef5116
7
+ data.tar.gz: 7e96661ca0f0d0efe659c05bdc3f8b3a19aba9c24ea954f5204952ff5467da106d42cbb616640e631b864832c31a17907edcd98cc8c6fb411c9c7c280f6ab0dd
@@ -1,12 +1,5 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 1.8.7
4
- - 1.9.2
5
- - 1.9.3
6
- - jruby-18mode
7
- - jruby-19mode
8
- - rbx-18mode
9
- - rbx-19mode
3
+ - 2.0.0
4
+ - 2.1.0
10
5
  - ruby-head
11
- - jruby-head
12
- - ree
data/README.md CHANGED
@@ -13,6 +13,10 @@ Install
13
13
  Changelog
14
14
  ---------
15
15
 
16
+ v3.0.0 (May 2, 2016)
17
+
18
+ * Complete overhaul. Now we use the JSON data fetched from Apple's hidden API.
19
+
16
20
  v2.1.0 (October 26, 2012)
17
21
 
18
22
  * Based on v14.
@@ -28,46 +32,45 @@ v2.0.0 (July 18, 2012)
28
32
  Usage
29
33
  -----
30
34
 
31
- Suppose you find a device locale by `NSLocale` on an iOS device.
32
-
33
- ```objc
34
- NSString* currency = [[NSLocale currentLocale] objectForKey:NSLocaleCurrencyCode];
35
+ ```ruby
36
+ price = AppStorePricingMatrix.find_by(tier: 1, country: 'US')
37
+
38
+ price.country # => "United States"
39
+ price.country_code # => "US"
40
+ price.currency_symbol # => "$"
41
+ price.currency_code # => "USD"
42
+ price.wholesale_price # => 0.7
43
+ price.retail_price # => 0.99
44
+ price.formatted_retail_price # => "$0.99"
45
+ price.formatted_wholesale_price # => "$0.70"
35
46
  ```
36
47
 
37
- That will give you the currency string like `USD` or `EUR`, and this library expects them as a key.
48
+ ```ruby
49
+ AppStorePricingMatrix.stems
50
+ # => [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 510, 530, 550, 560, 570, 580, 590]
38
51
 
39
- Some constants, useful for validation:
52
+ AppStorePricingMatrix.countries
53
+ # => ["US", "CA", "MX", "AU", "NZ", "JP", "CN", "SG", "HK", "TW", "ID", "IN", "RU", "TR", "IL", "ZA", "SA", "AE", "GB", "DK", "SE", "CH", "NO", "LU", "MT", "CY", "DE", "FR", "AT", "BG", "EE", "SK", "BE", "CZ", "LV", "LT", "NL", "ES", "IT", "SI", "GR", "IE", "PL", "PT", "FI", "RO", "HU", "KR"]
40
54
 
41
- ```ruby
42
- AppStorePricingMatrix::CURRENCIES
43
- => ["USD", "CAD", "MXN", "AUD", "NZD", "JPY", "EUR", "DKK", "SEK", "CHF", "NOK", "GBP", "CNY", "SGD", "HKD", "TWD", "RUB", "TRY", "INR", "IDR", "ILS", "ZAR", "SAR", "AED"]
55
+ AppStorePricingMatrix.currencies
56
+ # => ["USD", "CAD", "MXN", "AUD", "NZD", "JPY", "CNY", "SGD", "HKD", "TWD", "IDR", "INR", "RUB", "TRY", "ILS", "ZAR", "SAR", "AED", "GBP", "DKK", "SEK", "CHF", "NOK", "EUR"]
44
57
  ```
45
58
 
46
- To retrieve a customer price, query with the currency and the tier number:
59
+ Updating the price
60
+ ------------------
47
61
 
48
- ```ruby
49
- AppStorePricingMatrix::CUSTOMER_PRICES['USD'][1]
50
- => "0.99"
62
+ The pricing matrix JSON is taken from Apple's hidden API at the following URL.
51
63
 
52
- AppStorePricingMatrix::CUSTOMER_PRICES['JPY'][1]
53
- => "85"
54
64
  ```
55
-
56
- For developer proceeds:
57
-
58
- ```ruby
59
- AppStorePricingMatrix::DEVELOPER_PROCEEDS['GBP'][30]
60
- => "12.78"
65
+ https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/#{AppStoreID}/pricing/matrix
61
66
  ```
62
67
 
63
- Updating the price table
64
- ------------------------
65
-
66
- The price table was generated by parsing the exhibit C part of the paid app contract PDF file. As of October 26, 2012, it was versioned as v14.
68
+ The URL is accessible when you are logged in to iTunes Connect with your browser.
67
69
 
68
- Since the PDF file was malformed, PDF parsing wasn't feasible. My current method to extract out the data semi-automatically is as follows, using Mac OS X 10.7:
70
+ When you need to update the pricing matrix,
69
71
 
70
- 1. Select a column vertically using mouse / trackpad from tier 0 through tier 87, covering pairs of a currency and its commission
71
- 2. Save it into a text file, naming with the currency - e.g. "usd.txt" under the "input" folder
72
- 3. Run `rake aspm:generate` to compile the input files into pricing data
73
- 4. Then run the spec to verify the generated content by `rake`
72
+ 1. Login to iTunes Connect with your developer account.
73
+ 1. Run `rake aspm:open` and enter any App Store ID that you own.
74
+ 1. Your default browser will launch and load the JSON. Copy the entire content and paste into `input/pricing_matrix.json`.
75
+ 1. Run `rake` to check if anything is broken.
76
+ 1. Send a pull request with updated `input/pricing_matrix.json`.
data/Rakefile CHANGED
@@ -6,30 +6,13 @@ require 'rspec/core/rake_task'
6
6
  RSpec::Core::RakeTask.new('spec')
7
7
  task :default => :spec
8
8
 
9
- # Compile
10
9
  namespace :aspm do
11
- desc "Parse PDF and generate files"
12
- task :generate do
13
- Dir['input/*.txt'].each do |file|
14
- currency = File.basename(file, '.txt')
15
- body = File.read file
16
- array = body.split(/\s/)
10
+ desc 'Launch browser to fetch pricing matrix JSON'
11
+ task :open do
12
+ require 'launchy'
17
13
 
18
- amount = []
19
- amount_pro = []
20
-
21
- unless ['rub', 'zar', 'sar', 'aed'].include?(currency)
22
- array.each_slice(2) do |slice|
23
- amount << slice.first
24
- amount_pro << slice.last
25
- end
26
- else
27
- amount = array[0..87]
28
- amount_pro = array[88..-1]
29
- end
30
-
31
- File.write("lib/prices/#{currency}", amount.join("\n"))
32
- File.write("lib/prices/#{currency}_pro", amount_pro.join("\n"))
33
- end
14
+ print 'App Store ID (e.g. 890664813): '
15
+ id = STDIN.gets.strip
16
+ Launchy.open("https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/#{id}/pricing/matrix")
34
17
  end
35
18
  end
@@ -1,22 +1,23 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
 
3
3
  Gem::Specification.new do |gem|
4
- gem.authors = ["Kenn Ejima", "Elliot Bowes"]
5
- gem.email = ["kenn.ejima@gmail.com"]
4
+ gem.authors = ['Kenn Ejima', 'Elliot Bowes']
5
+ gem.email = ['kenn.ejima@gmail.com']
6
6
  gem.description = %q{A simple module that holds currencies and prices from the Apple's iOS App Store.}
7
7
  gem.summary = %q{Constants for App Store Pricing Matrix}
8
- gem.homepage = "http://github.com/kenn/app_store_pricing_matrix"
8
+ gem.homepage = 'http://github.com/kenn/app_store_pricing_matrix'
9
9
 
10
10
  gem.files = `git ls-files`.split($\)
11
11
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
12
12
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
13
- gem.name = "app_store_pricing_matrix"
14
- gem.require_paths = ["lib"]
15
- gem.version = '2.1.0' # retrieve this value by: Gem.loaded_specs['app_store_pricing_matrix'].version.to_s
13
+ gem.name = 'app_store_pricing_matrix'
14
+ gem.require_paths = ['lib']
15
+ gem.version = '3.0.0' # retrieve this value by: Gem.loaded_specs['app_store_pricing_matrix'].version.to_s
16
16
 
17
- gem.add_development_dependency "rspec"
18
- gem.add_development_dependency "bundler"
17
+ gem.add_development_dependency 'rspec'
18
+ gem.add_development_dependency 'bundler'
19
+ gem.add_development_dependency 'launchy'
19
20
 
20
21
  # For Travis
21
- gem.add_development_dependency "rake"
22
+ gem.add_development_dependency 'rake'
22
23
  end
@@ -0,0 +1 @@
1
+ {"data":{"pricingTiers":[{"tierStem":"0","tierName":"Free","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"$0.00","fWholesalePrice":"$0.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"$0.00","fWholesalePrice":"$0.00"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"$0.00","fWholesalePrice":"$0.00"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"$0.00","fWholesalePrice":"$0.00"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"$0.00","fWholesalePrice":"$0.00"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":0.00,"retailPrice":0.00000,"fRetailPrice":"¥0","fWholesalePrice":"¥0"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"¥0.00","fWholesalePrice":"¥0.00"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"S$ .00","fWholesalePrice":"S$ .00"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"HK$ .00","fWholesalePrice":"HK$ .00"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"NT$ 0","fWholesalePrice":"NT$ 0"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"Rp 0","fWholesalePrice":"Rp 0"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"Rs 0","fWholesalePrice":"Rs 0"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0 р.","fWholesalePrice":"0 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 TL","fWholesalePrice":"0,00 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"NIS 0.00","fWholesalePrice":"NIS 0.00"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"R0.00","fWholesalePrice":"R0.00"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"SR 0.00","fWholesalePrice":"SR 0.00"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"AED 0.00","fWholesalePrice":"AED 0.00"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"£0.00","fWholesalePrice":"£0.00"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 kr","fWholesalePrice":"0,00 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 kr","fWholesalePrice":"0,00 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"CHF 0.00","fWholesalePrice":"CHF 0.00"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 kr","fWholesalePrice":"0,00 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"0,00 €","fWholesalePrice":"0,00 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":0.00,"retailPrice":0.00,"fRetailPrice":"$0.00","fWholesalePrice":"$0.00"}]},{"tierStem":"1","tierName":"Tier 1","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":0.70,"retailPrice":0.99,"fRetailPrice":"$0.99","fWholesalePrice":"$0.70"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":0.97,"retailPrice":1.39,"fRetailPrice":"$1.39","fWholesalePrice":"$0.97"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":11.90,"retailPrice":17.00,"fRetailPrice":"$17.00","fWholesalePrice":"$11.90"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":0.95,"retailPrice":1.49,"fRetailPrice":"$1.49","fWholesalePrice":"$0.95"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":1.04,"retailPrice":1.49,"fRetailPrice":"$1.49","fWholesalePrice":"$1.04"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":84.00,"retailPrice":120.00000,"fRetailPrice":"¥120","fWholesalePrice":"¥84"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":4.12,"retailPrice":6.00,"fRetailPrice":"¥6.00","fWholesalePrice":"¥4.12"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":1.04,"retailPrice":1.48,"fRetailPrice":"S$ 1.48","fWholesalePrice":"S$ 1.04"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":5.60,"retailPrice":8.00,"fRetailPrice":"HK$ 8.00","fWholesalePrice":"HK$ 5.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":21.00,"retailPrice":30.00,"fRetailPrice":"NT$ 30","fWholesalePrice":"NT$ 21"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":10500.00,"retailPrice":15000.00,"fRetailPrice":"Rp 15ribu","fWholesalePrice":"Rp 10.500"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":42.00,"retailPrice":60.00,"fRetailPrice":"Rs 60","fWholesalePrice":"Rs 42"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":52.50,"retailPrice":75.00,"fRetailPrice":"75 р.","fWholesalePrice":"52,50 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":1.88,"retailPrice":2.69,"fRetailPrice":"2,69 TL","fWholesalePrice":"1,88 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":2.73,"retailPrice":3.90,"fRetailPrice":"NIS 3.90","fWholesalePrice":"NIS 2.73"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":11.66,"retailPrice":18.99,"fRetailPrice":"R18.99","fWholesalePrice":"R11.66"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":2.58,"retailPrice":3.69,"fRetailPrice":"SR 3.69","fWholesalePrice":"SR 2.58"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":2.58,"retailPrice":3.69,"fRetailPrice":"AED 3.69","fWholesalePrice":"AED 2.58"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":0.46,"retailPrice":0.79,"fRetailPrice":"£0.79","fWholesalePrice":"£0.46"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":4.48,"retailPrice":8.00,"fRetailPrice":"8,00 kr","fWholesalePrice":"4,48 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":5.60,"retailPrice":10.00,"fRetailPrice":"10,00 kr","fWholesalePrice":"5,60 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":0.65,"retailPrice":1.00,"fRetailPrice":"CHF 1.00","fWholesalePrice":"CHF 0.65"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":6.16,"retailPrice":11.00,"fRetailPrice":"11,00 kr","fWholesalePrice":"6,16 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.59,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,59 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.59,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,59 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.55,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,55 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":0.77,"retailPrice":1.09,"fRetailPrice":"$1.09","fWholesalePrice":"$0.77"}]},{"tierStem":"2","tierName":"Tier 2","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":1.40,"retailPrice":1.99,"fRetailPrice":"$1.99","fWholesalePrice":"$1.40"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":1.95,"retailPrice":2.79,"fRetailPrice":"$2.79","fWholesalePrice":"$1.95"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":24.50,"retailPrice":35.00,"fRetailPrice":"$35.00","fWholesalePrice":"$24.50"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":1.90,"retailPrice":2.99,"fRetailPrice":"$2.99","fWholesalePrice":"$1.90"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":2.09,"retailPrice":2.99,"fRetailPrice":"$2.99","fWholesalePrice":"$2.09"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":168.00,"retailPrice":240.00000,"fRetailPrice":"¥240","fWholesalePrice":"¥168"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":8.23,"retailPrice":12.00,"fRetailPrice":"¥12.00","fWholesalePrice":"¥8.23"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":2.09,"retailPrice":2.98,"fRetailPrice":"S$ 2.98","fWholesalePrice":"S$ 2.09"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":10.50,"retailPrice":15.00,"fRetailPrice":"HK$ 15.00","fWholesalePrice":"HK$ 10.50"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":42.00,"retailPrice":60.00,"fRetailPrice":"NT$ 60","fWholesalePrice":"NT$ 42"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":20300.00,"retailPrice":29000.00,"fRetailPrice":"Rp 29ribu","fWholesalePrice":"Rp 20.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":84.00,"retailPrice":120.00,"fRetailPrice":"Rs 120","fWholesalePrice":"Rs 84"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":104.30,"retailPrice":149.00,"fRetailPrice":"149 р.","fWholesalePrice":"104,30 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":3.70,"retailPrice":5.29,"fRetailPrice":"5,29 TL","fWholesalePrice":"3,70 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":5.53,"retailPrice":7.90,"fRetailPrice":"NIS 7.90","fWholesalePrice":"NIS 5.53"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":23.33,"retailPrice":37.99,"fRetailPrice":"R37.99","fWholesalePrice":"R23.33"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":5.10,"retailPrice":7.29,"fRetailPrice":"SR 7.29","fWholesalePrice":"SR 5.10"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":5.10,"retailPrice":7.29,"fRetailPrice":"AED 7.29","fWholesalePrice":"AED 5.10"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":0.87,"retailPrice":1.49,"fRetailPrice":"£1.49","fWholesalePrice":"£0.87"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":8.96,"retailPrice":16.00,"fRetailPrice":"16,00 kr","fWholesalePrice":"8,96 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":11.20,"retailPrice":20.00,"fRetailPrice":"20,00 kr","fWholesalePrice":"11,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":1.30,"retailPrice":2.00,"fRetailPrice":"CHF 2.00","fWholesalePrice":"CHF 1.30"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":12.32,"retailPrice":22.00,"fRetailPrice":"22,00 kr","fWholesalePrice":"12,32 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.19,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,19 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.18,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,18 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.17,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,17 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.17,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,17 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.16,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,16 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.16,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,16 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.16,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,16 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.16,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,16 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.16,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,16 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.15,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,15 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.15,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,15 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.15,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,15 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.15,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,15 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.15,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,15 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.15,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,15 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.14,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,14 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.14,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,14 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.13,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,13 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.13,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,13 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.13,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,13 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.13,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,13 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.12,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,12 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.16,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,16 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.10,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,10 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":1.54,"retailPrice":2.19,"fRetailPrice":"$2.19","fWholesalePrice":"$1.54"}]},{"tierStem":"3","tierName":"Tier 3","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":2.10,"retailPrice":2.99,"fRetailPrice":"$2.99","fWholesalePrice":"$2.10"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":2.79,"retailPrice":3.99,"fRetailPrice":"$3.99","fWholesalePrice":"$2.79"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":34.30,"retailPrice":49.00,"fRetailPrice":"$49.00","fWholesalePrice":"$34.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":2.86,"retailPrice":4.49,"fRetailPrice":"$4.49","fWholesalePrice":"$2.86"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":3.14,"retailPrice":4.49,"fRetailPrice":"$4.49","fWholesalePrice":"$3.14"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":252.00,"retailPrice":360.00000,"fRetailPrice":"¥360","fWholesalePrice":"¥252"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":12.35,"retailPrice":18.00,"fRetailPrice":"¥18.00","fWholesalePrice":"¥12.35"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":3.14,"retailPrice":4.48,"fRetailPrice":"S$ 4.48","fWholesalePrice":"S$ 3.14"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":16.10,"retailPrice":23.00,"fRetailPrice":"HK$ 23.00","fWholesalePrice":"HK$ 16.10"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":63.00,"retailPrice":90.00,"fRetailPrice":"NT$ 90","fWholesalePrice":"NT$ 63"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":31500.00,"retailPrice":45000.00,"fRetailPrice":"Rp 45ribu","fWholesalePrice":"Rp 31.500"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":133.00,"retailPrice":190.00,"fRetailPrice":"Rs 190","fWholesalePrice":"Rs 133"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":160.30,"retailPrice":229.00,"fRetailPrice":"229 р.","fWholesalePrice":"160,30 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":5.59,"retailPrice":7.99,"fRetailPrice":"7,99 TL","fWholesalePrice":"5,59 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":8.33,"retailPrice":11.90,"fRetailPrice":"NIS 11.90","fWholesalePrice":"NIS 8.33"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":36.84,"retailPrice":59.99,"fRetailPrice":"R59.99","fWholesalePrice":"R36.84"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":7.69,"retailPrice":10.99,"fRetailPrice":"SR 10.99","fWholesalePrice":"SR 7.69"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":7.69,"retailPrice":10.99,"fRetailPrice":"AED 10.99","fWholesalePrice":"AED 7.69"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":1.34,"retailPrice":2.29,"fRetailPrice":"£2.29","fWholesalePrice":"£1.34"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":14.00,"retailPrice":25.00,"fRetailPrice":"25,00 kr","fWholesalePrice":"14,00 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":16.80,"retailPrice":30.00,"fRetailPrice":"30,00 kr","fWholesalePrice":"16,80 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":1.94,"retailPrice":3.00,"fRetailPrice":"CHF 3.00","fWholesalePrice":"CHF 1.94"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":18.48,"retailPrice":33.00,"fRetailPrice":"33,00 kr","fWholesalePrice":"18,48 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.79,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,79 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.77,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,77 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.76,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,76 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.76,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,76 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.74,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,74 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.74,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,74 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.74,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,74 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.74,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,74 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.74,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,74 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.73,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,73 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.73,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,73 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.73,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,73 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.73,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,73 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.73,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,73 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.73,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,73 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.72,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,72 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.72,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,72 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.70,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,70 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.70,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,70 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.70,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,70 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.70,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,70 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.69,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,69 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.74,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,74 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.65,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,65 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":2.31,"retailPrice":3.29,"fRetailPrice":"$3.29","fWholesalePrice":"$2.31"}]},{"tierStem":"4","tierName":"Tier 4","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":2.80,"retailPrice":3.99,"fRetailPrice":"$3.99","fWholesalePrice":"$2.80"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":3.84,"retailPrice":5.49,"fRetailPrice":"$5.49","fWholesalePrice":"$3.84"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":48.30,"retailPrice":69.00,"fRetailPrice":"$69.00","fWholesalePrice":"$48.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":3.81,"retailPrice":5.99,"fRetailPrice":"$5.99","fWholesalePrice":"$3.81"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":4.19,"retailPrice":5.99,"fRetailPrice":"$5.99","fWholesalePrice":"$4.19"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":336.00,"retailPrice":480.00000,"fRetailPrice":"¥480","fWholesalePrice":"¥336"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":17.15,"retailPrice":25.00,"fRetailPrice":"¥25.00","fWholesalePrice":"¥17.15"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":4.19,"retailPrice":5.98,"fRetailPrice":"S$ 5.98","fWholesalePrice":"S$ 4.19"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":19.60,"retailPrice":28.00,"fRetailPrice":"HK$ 28.00","fWholesalePrice":"HK$ 19.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":84.00,"retailPrice":120.00,"fRetailPrice":"NT$ 120","fWholesalePrice":"NT$ 84"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":41300.00,"retailPrice":59000.00,"fRetailPrice":"Rp 59ribu","fWholesalePrice":"Rp 41.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":175.00,"retailPrice":250.00,"fRetailPrice":"Rs 250","fWholesalePrice":"Rs 175"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":209.30,"retailPrice":299.00,"fRetailPrice":"299 р.","fWholesalePrice":"209,30 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":7.34,"retailPrice":10.49,"fRetailPrice":"10,49 TL","fWholesalePrice":"7,34 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":11.13,"retailPrice":15.90,"fRetailPrice":"NIS 15.90","fWholesalePrice":"NIS 11.13"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":49.12,"retailPrice":79.99,"fRetailPrice":"R79.99","fWholesalePrice":"R49.12"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":10.49,"retailPrice":14.99,"fRetailPrice":"SR 14.99","fWholesalePrice":"SR 10.49"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":10.49,"retailPrice":14.99,"fRetailPrice":"AED 14.99","fWholesalePrice":"AED 10.49"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":1.74,"retailPrice":2.99,"fRetailPrice":"£2.99","fWholesalePrice":"£1.74"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":16.24,"retailPrice":29.00,"fRetailPrice":"29,00 kr","fWholesalePrice":"16,24 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":22.40,"retailPrice":40.00,"fRetailPrice":"40,00 kr","fWholesalePrice":"22,40 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":2.59,"retailPrice":4.00,"fRetailPrice":"CHF 4.00","fWholesalePrice":"CHF 2.59"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":24.64,"retailPrice":44.00,"fRetailPrice":"44,00 kr","fWholesalePrice":"24,64 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.39,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,39 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.37,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,37 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.35,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,35 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.35,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,35 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.33,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,33 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.33,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,33 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.33,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,33 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.33,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,33 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.33,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,33 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.31,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,31 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.31,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,31 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.31,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,31 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.31,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,31 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.31,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,31 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.31,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,31 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.29,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,29 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.29,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,29 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.27,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,27 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.27,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,27 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.27,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,27 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.27,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,27 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.25,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,25 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.33,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,33 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.20,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,20 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":3.08,"retailPrice":4.39,"fRetailPrice":"$4.39","fWholesalePrice":"$3.08"}]},{"tierStem":"5","tierName":"Tier 5","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":3.50,"retailPrice":4.99,"fRetailPrice":"$4.99","fWholesalePrice":"$3.50"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":4.89,"retailPrice":6.99,"fRetailPrice":"$6.99","fWholesalePrice":"$4.89"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":62.30,"retailPrice":89.00,"fRetailPrice":"$89.00","fWholesalePrice":"$62.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":5.08,"retailPrice":7.99,"fRetailPrice":"$7.99","fWholesalePrice":"$5.08"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":5.24,"retailPrice":7.49,"fRetailPrice":"$7.49","fWholesalePrice":"$5.24"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":420.00,"retailPrice":600.00000,"fRetailPrice":"¥600","fWholesalePrice":"¥420"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":20.58,"retailPrice":30.00,"fRetailPrice":"¥30.00","fWholesalePrice":"¥20.58"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":4.89,"retailPrice":6.98,"fRetailPrice":"S$ 6.98","fWholesalePrice":"S$ 4.89"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":26.60,"retailPrice":38.00,"fRetailPrice":"HK$ 38.00","fWholesalePrice":"HK$ 26.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":105.00,"retailPrice":150.00,"fRetailPrice":"NT$ 150","fWholesalePrice":"NT$ 105"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":52500.00,"retailPrice":75000.00,"fRetailPrice":"Rp 75ribu","fWholesalePrice":"Rp 52.500"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":210.00,"retailPrice":300.00,"fRetailPrice":"Rs 300","fWholesalePrice":"Rs 210"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":265.30,"retailPrice":379.00,"fRetailPrice":"379 р.","fWholesalePrice":"265,30 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":9.09,"retailPrice":12.99,"fRetailPrice":"12,99 TL","fWholesalePrice":"9,09 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":13.93,"retailPrice":19.90,"fRetailPrice":"NIS 19.90","fWholesalePrice":"NIS 13.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":61.40,"retailPrice":99.99,"fRetailPrice":"R99.99","fWholesalePrice":"R61.40"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":12.59,"retailPrice":17.99,"fRetailPrice":"SR 17.99","fWholesalePrice":"SR 12.59"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":12.59,"retailPrice":17.99,"fRetailPrice":"AED 17.99","fWholesalePrice":"AED 12.59"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":2.33,"retailPrice":3.99,"fRetailPrice":"£3.99","fWholesalePrice":"£2.33"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":21.84,"retailPrice":39.00,"fRetailPrice":"39,00 kr","fWholesalePrice":"21,84 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":28.00,"retailPrice":50.00,"fRetailPrice":"50,00 kr","fWholesalePrice":"28,00 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":3.24,"retailPrice":5.00,"fRetailPrice":"CHF 5.00","fWholesalePrice":"CHF 3.24"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":30.80,"retailPrice":55.00,"fRetailPrice":"55,00 kr","fWholesalePrice":"30,80 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.99,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,99 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.96,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,96 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.94,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,94 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.94,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,94 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.91,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,91 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.91,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,91 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.91,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,91 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.91,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,91 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.91,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,91 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.89,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,89 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.89,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,89 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.89,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,89 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.89,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,89 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.89,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,89 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.89,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,89 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.86,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,86 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.86,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,86 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.84,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,84 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.84,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,84 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.84,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,84 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.84,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,84 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.82,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,82 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.91,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,91 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.75,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,75 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":3.85,"retailPrice":5.49,"fRetailPrice":"$5.49","fWholesalePrice":"$3.85"}]},{"tierStem":"6","tierName":"Tier 6","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":4.20,"retailPrice":5.99,"fRetailPrice":"$5.99","fWholesalePrice":"$4.20"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":5.94,"retailPrice":8.49,"fRetailPrice":"$8.49","fWholesalePrice":"$5.94"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":69.30,"retailPrice":99.00,"fRetailPrice":"$99.00","fWholesalePrice":"$69.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":6.36,"retailPrice":9.99,"fRetailPrice":"$9.99","fWholesalePrice":"$6.36"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":6.29,"retailPrice":8.99,"fRetailPrice":"$8.99","fWholesalePrice":"$6.29"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":504.00,"retailPrice":720.00000,"fRetailPrice":"¥720","fWholesalePrice":"¥504"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":27.44,"retailPrice":40.00,"fRetailPrice":"¥40.00","fWholesalePrice":"¥27.44"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":6.29,"retailPrice":8.98,"fRetailPrice":"S$ 8.98","fWholesalePrice":"S$ 6.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":33.60,"retailPrice":48.00,"fRetailPrice":"HK$ 48.00","fWholesalePrice":"HK$ 33.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":126.00,"retailPrice":180.00,"fRetailPrice":"NT$ 180","fWholesalePrice":"NT$ 126"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":62300.00,"retailPrice":89000.00,"fRetailPrice":"Rp 89ribu","fWholesalePrice":"Rp 62.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":259.00,"retailPrice":370.00,"fRetailPrice":"Rs 370","fWholesalePrice":"Rs 259"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":321.30,"retailPrice":459.00,"fRetailPrice":"459 р.","fWholesalePrice":"321,30 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":11.19,"retailPrice":15.99,"fRetailPrice":"15,99 TL","fWholesalePrice":"11,19 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":16.73,"retailPrice":23.90,"fRetailPrice":"NIS 23.90","fWholesalePrice":"NIS 16.73"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":73.68,"retailPrice":119.99,"fRetailPrice":"R119.99","fWholesalePrice":"R73.68"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":14.69,"retailPrice":20.99,"fRetailPrice":"SR 20.99","fWholesalePrice":"SR 14.69"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":14.69,"retailPrice":20.99,"fRetailPrice":"AED 20.99","fWholesalePrice":"AED 14.69"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":2.62,"retailPrice":4.49,"fRetailPrice":"£4.49","fWholesalePrice":"£2.62"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":27.44,"retailPrice":49.00,"fRetailPrice":"49,00 kr","fWholesalePrice":"27,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":36.40,"retailPrice":65.00,"fRetailPrice":"65,00 kr","fWholesalePrice":"36,40 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":3.89,"retailPrice":6.00,"fRetailPrice":"CHF 6.00","fWholesalePrice":"CHF 3.89"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":36.40,"retailPrice":65.00,"fRetailPrice":"65,00 kr","fWholesalePrice":"36,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.58,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,58 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.55,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,55 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.52,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,52 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.52,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,52 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.49,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,49 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.49,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,49 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.49,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,49 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.49,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,49 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.49,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,49 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.47,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,47 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.47,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,47 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.47,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,47 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.47,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,47 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.47,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,47 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.47,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,47 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.44,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,44 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.44,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,44 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.41,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,41 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.41,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,41 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.41,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,41 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.41,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,41 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.38,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,38 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.49,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,49 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.30,"retailPrice":5.99,"fRetailPrice":"5,99 €","fWholesalePrice":"3,30 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":4.62,"retailPrice":6.59,"fRetailPrice":"$6.59","fWholesalePrice":"$4.62"}]},{"tierStem":"7","tierName":"Tier 7","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":4.90,"retailPrice":6.99,"fRetailPrice":"$6.99","fWholesalePrice":"$4.90"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":6.99,"retailPrice":9.99,"fRetailPrice":"$9.99","fWholesalePrice":"$6.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":83.30,"retailPrice":119.00,"fRetailPrice":"$119.00","fWholesalePrice":"$83.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":6.99,"retailPrice":10.99,"fRetailPrice":"$10.99","fWholesalePrice":"$6.99"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":6.99,"retailPrice":9.99,"fRetailPrice":"$9.99","fWholesalePrice":"$6.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":588.00,"retailPrice":840.00000,"fRetailPrice":"¥840","fWholesalePrice":"¥588"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":30.87,"retailPrice":45.00,"fRetailPrice":"¥45.00","fWholesalePrice":"¥30.87"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":6.99,"retailPrice":9.98,"fRetailPrice":"S$ 9.98","fWholesalePrice":"S$ 6.99"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":37.10,"retailPrice":53.00,"fRetailPrice":"HK$ 53.00","fWholesalePrice":"HK$ 37.10"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":147.00,"retailPrice":210.00,"fRetailPrice":"NT$ 210","fWholesalePrice":"NT$ 147"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":69300.00,"retailPrice":99000.00,"fRetailPrice":"Rp 99ribu","fWholesalePrice":"Rp 69.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":294.00,"retailPrice":420.00,"fRetailPrice":"Rs 420","fWholesalePrice":"Rs 294"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":370.30,"retailPrice":529.00,"fRetailPrice":"529 р.","fWholesalePrice":"370,30 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":13.29,"retailPrice":18.99,"fRetailPrice":"18,99 TL","fWholesalePrice":"13,29 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":19.53,"retailPrice":27.90,"fRetailPrice":"NIS 27.90","fWholesalePrice":"NIS 19.53"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":85.96,"retailPrice":139.99,"fRetailPrice":"R139.99","fWholesalePrice":"R85.96"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":17.49,"retailPrice":24.99,"fRetailPrice":"SR 24.99","fWholesalePrice":"SR 17.49"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":17.49,"retailPrice":24.99,"fRetailPrice":"AED 24.99","fWholesalePrice":"AED 17.49"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":2.91,"retailPrice":4.99,"fRetailPrice":"£4.99","fWholesalePrice":"£2.91"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":30.80,"retailPrice":55.00,"fRetailPrice":"55,00 kr","fWholesalePrice":"30,80 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":42.00,"retailPrice":75.00,"fRetailPrice":"75,00 kr","fWholesalePrice":"42,00 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":4.54,"retailPrice":7.00,"fRetailPrice":"CHF 7.00","fWholesalePrice":"CHF 4.54"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":42.00,"retailPrice":75.00,"fRetailPrice":"75,00 kr","fWholesalePrice":"42,00 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.18,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"4,18 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.15,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"4,15 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.11,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"4,11 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.11,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"4,11 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.08,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"4,08 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.08,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"4,08 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.08,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"4,08 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.08,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"4,08 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.08,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"4,08 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.04,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"4,04 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.04,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"4,04 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.04,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"4,04 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.04,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"4,04 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.04,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"4,04 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.04,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"4,04 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.01,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"4,01 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.01,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"4,01 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.98,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"3,98 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.98,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"3,98 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.98,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"3,98 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.98,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"3,98 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.95,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"3,95 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.08,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"4,08 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":3.85,"retailPrice":6.99,"fRetailPrice":"6,99 €","fWholesalePrice":"3,85 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":5.39,"retailPrice":7.69,"fRetailPrice":"$7.69","fWholesalePrice":"$5.39"}]},{"tierStem":"8","tierName":"Tier 8","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":5.60,"retailPrice":7.99,"fRetailPrice":"$7.99","fWholesalePrice":"$5.60"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":7.69,"retailPrice":10.99,"fRetailPrice":"$10.99","fWholesalePrice":"$7.69"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":97.30,"retailPrice":139.00,"fRetailPrice":"$139.00","fWholesalePrice":"$97.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":8.27,"retailPrice":12.99,"fRetailPrice":"$12.99","fWholesalePrice":"$8.27"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":8.39,"retailPrice":11.99,"fRetailPrice":"$11.99","fWholesalePrice":"$8.39"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":672.00,"retailPrice":960.00000,"fRetailPrice":"¥960","fWholesalePrice":"¥672"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":34.30,"retailPrice":50.00,"fRetailPrice":"¥50.00","fWholesalePrice":"¥34.30"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":7.69,"retailPrice":10.98,"fRetailPrice":"S$ 10.98","fWholesalePrice":"S$ 7.69"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":40.60,"retailPrice":58.00,"fRetailPrice":"HK$ 58.00","fWholesalePrice":"HK$ 40.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":168.00,"retailPrice":240.00,"fRetailPrice":"NT$ 240","fWholesalePrice":"NT$ 168"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":83300.00,"retailPrice":119000.00,"fRetailPrice":"Rp 119ribu","fWholesalePrice":"Rp 83.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":343.00,"retailPrice":490.00,"fRetailPrice":"Rs 490","fWholesalePrice":"Rs 343"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":419.30,"retailPrice":599.00,"fRetailPrice":"599 р.","fWholesalePrice":"419,30 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":14.69,"retailPrice":20.99,"fRetailPrice":"20,99 TL","fWholesalePrice":"14,69 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":22.33,"retailPrice":31.90,"fRetailPrice":"NIS 31.90","fWholesalePrice":"NIS 22.33"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":98.24,"retailPrice":159.99,"fRetailPrice":"R159.99","fWholesalePrice":"R98.24"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":20.99,"retailPrice":29.99,"fRetailPrice":"SR 29.99","fWholesalePrice":"SR 20.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":20.99,"retailPrice":29.99,"fRetailPrice":"AED 29.99","fWholesalePrice":"AED 20.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":3.49,"retailPrice":5.99,"fRetailPrice":"£5.99","fWholesalePrice":"£3.49"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":33.04,"retailPrice":59.00,"fRetailPrice":"59,00 kr","fWholesalePrice":"33,04 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":47.60,"retailPrice":85.00,"fRetailPrice":"85,00 kr","fWholesalePrice":"47,60 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":5.19,"retailPrice":8.00,"fRetailPrice":"CHF 8.00","fWholesalePrice":"CHF 5.19"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":47.60,"retailPrice":85.00,"fRetailPrice":"85,00 kr","fWholesalePrice":"47,60 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.78,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,78 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.74,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,74 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.70,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,70 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.70,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,70 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.66,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,66 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.66,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,66 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.66,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,66 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.66,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,66 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.66,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,66 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.62,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,62 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.62,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,62 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.62,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,62 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.62,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,62 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.62,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,62 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.62,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,62 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.58,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,58 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.58,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,58 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.55,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,55 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.55,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,55 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.55,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,55 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.55,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,55 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.51,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,51 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.66,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,66 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.40,"retailPrice":7.99,"fRetailPrice":"7,99 €","fWholesalePrice":"4,40 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":6.16,"retailPrice":8.79,"fRetailPrice":"$8.79","fWholesalePrice":"$6.16"}]},{"tierStem":"9","tierName":"Tier 9","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":6.30,"retailPrice":8.99,"fRetailPrice":"$8.99","fWholesalePrice":"$6.30"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":8.39,"retailPrice":11.99,"fRetailPrice":"$11.99","fWholesalePrice":"$8.39"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":111.30,"retailPrice":159.00,"fRetailPrice":"$159.00","fWholesalePrice":"$111.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":8.90,"retailPrice":13.99,"fRetailPrice":"$13.99","fWholesalePrice":"$8.90"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":9.09,"retailPrice":12.99,"fRetailPrice":"$12.99","fWholesalePrice":"$9.09"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":756.00,"retailPrice":1080.00000,"fRetailPrice":"¥1,080","fWholesalePrice":"¥756"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":41.16,"retailPrice":60.00,"fRetailPrice":"¥60.00","fWholesalePrice":"¥41.16"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":9.09,"retailPrice":12.98,"fRetailPrice":"S$ 12.98","fWholesalePrice":"S$ 9.09"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":47.60,"retailPrice":68.00,"fRetailPrice":"HK$ 68.00","fWholesalePrice":"HK$ 47.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":189.00,"retailPrice":270.00,"fRetailPrice":"NT$ 270","fWholesalePrice":"NT$ 189"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":90300.00,"retailPrice":129000.00,"fRetailPrice":"Rp 129ribu","fWholesalePrice":"Rp 90.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":385.00,"retailPrice":550.00,"fRetailPrice":"Rs 550","fWholesalePrice":"Rs 385"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":489.30,"retailPrice":699.00,"fRetailPrice":"699 р.","fWholesalePrice":"489,30 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":16.79,"retailPrice":23.99,"fRetailPrice":"23,99 TL","fWholesalePrice":"16,79 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":25.13,"retailPrice":35.90,"fRetailPrice":"NIS 35.90","fWholesalePrice":"NIS 25.13"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":110.52,"retailPrice":179.99,"fRetailPrice":"R179.99","fWholesalePrice":"R110.52"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":23.09,"retailPrice":32.99,"fRetailPrice":"SR 32.99","fWholesalePrice":"SR 23.09"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":23.09,"retailPrice":32.99,"fRetailPrice":"AED 32.99","fWholesalePrice":"AED 23.09"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":4.08,"retailPrice":6.99,"fRetailPrice":"£6.99","fWholesalePrice":"£4.08"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":38.64,"retailPrice":69.00,"fRetailPrice":"69,00 kr","fWholesalePrice":"38,64 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":53.20,"retailPrice":95.00,"fRetailPrice":"95,00 kr","fWholesalePrice":"53,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":5.83,"retailPrice":9.00,"fRetailPrice":"CHF 9.00","fWholesalePrice":"CHF 5.83"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":55.44,"retailPrice":99.00,"fRetailPrice":"99,00 kr","fWholesalePrice":"55,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.38,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,38 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.33,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,33 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.29,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,29 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.29,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,29 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.24,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,24 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.24,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,24 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.24,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,24 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.24,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,24 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.24,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,24 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.20,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,20 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.20,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,20 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.20,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,20 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.20,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,20 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.20,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,20 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.20,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,20 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.16,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,16 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.16,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,16 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.12,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,12 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.12,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,12 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.12,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,12 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.12,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,12 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.08,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,08 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.24,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"5,24 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":4.96,"retailPrice":8.99,"fRetailPrice":"8,99 €","fWholesalePrice":"4,96 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":6.93,"retailPrice":9.89,"fRetailPrice":"$9.89","fWholesalePrice":"$6.93"}]},{"tierStem":"10","tierName":"Tier 10","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":7.00,"retailPrice":9.99,"fRetailPrice":"$9.99","fWholesalePrice":"$7.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":9.79,"retailPrice":13.99,"fRetailPrice":"$13.99","fWholesalePrice":"$9.79"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":118.30,"retailPrice":169.00,"fRetailPrice":"$169.00","fWholesalePrice":"$118.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":9.54,"retailPrice":14.99,"fRetailPrice":"$14.99","fWholesalePrice":"$9.54"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":10.49,"retailPrice":14.99,"fRetailPrice":"$14.99","fWholesalePrice":"$10.49"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":840.00,"retailPrice":1200.00000,"fRetailPrice":"¥1,200","fWholesalePrice":"¥840"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":46.65,"retailPrice":68.00,"fRetailPrice":"¥68.00","fWholesalePrice":"¥46.65"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":10.49,"retailPrice":14.98,"fRetailPrice":"S$ 14.98","fWholesalePrice":"S$ 10.49"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":54.60,"retailPrice":78.00,"fRetailPrice":"HK$ 78.00","fWholesalePrice":"HK$ 54.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":210.00,"retailPrice":300.00,"fRetailPrice":"NT$ 300","fWholesalePrice":"NT$ 210"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":104300.00,"retailPrice":149000.00,"fRetailPrice":"Rp 149ribu","fWholesalePrice":"Rp 104.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":434.00,"retailPrice":620.00,"fRetailPrice":"Rs 620","fWholesalePrice":"Rs 434"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":524.30,"retailPrice":749.00,"fRetailPrice":"749 р.","fWholesalePrice":"524,30 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":18.89,"retailPrice":26.99,"fRetailPrice":"26,99 TL","fWholesalePrice":"18,89 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":27.93,"retailPrice":39.90,"fRetailPrice":"NIS 39.90","fWholesalePrice":"NIS 27.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":122.80,"retailPrice":199.99,"fRetailPrice":"R199.99","fWholesalePrice":"R122.80"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":25.89,"retailPrice":36.99,"fRetailPrice":"SR 36.99","fWholesalePrice":"SR 25.89"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":25.89,"retailPrice":36.99,"fRetailPrice":"AED 36.99","fWholesalePrice":"AED 25.89"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":4.66,"retailPrice":7.99,"fRetailPrice":"£7.99","fWholesalePrice":"£4.66"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":44.24,"retailPrice":79.00,"fRetailPrice":"79,00 kr","fWholesalePrice":"44,24 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":61.04,"retailPrice":109.00,"fRetailPrice":"109,00 kr","fWholesalePrice":"61,04 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":6.48,"retailPrice":10.00,"fRetailPrice":"CHF 10.00","fWholesalePrice":"CHF 6.48"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":61.04,"retailPrice":109.00,"fRetailPrice":"109,00 kr","fWholesalePrice":"61,04 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.98,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,98 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.93,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,93 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.88,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,88 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.88,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,88 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.83,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,83 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.83,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,83 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.83,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,83 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.83,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,83 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.83,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,83 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.78,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,78 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.78,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,78 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.78,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,78 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.78,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,78 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.78,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,78 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.78,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,78 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.73,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,73 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.73,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,73 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.69,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,69 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.69,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,69 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.69,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,69 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.69,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,69 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.64,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,64 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.83,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,83 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":5.51,"retailPrice":9.99,"fRetailPrice":"9,99 €","fWholesalePrice":"5,51 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":7.70,"retailPrice":10.99,"fRetailPrice":"$10.99","fWholesalePrice":"$7.70"}]},{"tierStem":"11","tierName":"Tier 11","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":7.70,"retailPrice":10.99,"fRetailPrice":"$10.99","fWholesalePrice":"$7.70"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":10.49,"retailPrice":14.99,"fRetailPrice":"$14.99","fWholesalePrice":"$10.49"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":132.30,"retailPrice":189.00,"fRetailPrice":"$189.00","fWholesalePrice":"$132.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":10.81,"retailPrice":16.99,"fRetailPrice":"$16.99","fWholesalePrice":"$10.81"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":11.19,"retailPrice":15.99,"fRetailPrice":"$15.99","fWholesalePrice":"$11.19"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":910.00,"retailPrice":1300.00000,"fRetailPrice":"¥1,300","fWholesalePrice":"¥910"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":50.08,"retailPrice":73.00,"fRetailPrice":"¥73.00","fWholesalePrice":"¥50.08"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":11.19,"retailPrice":15.98,"fRetailPrice":"S$ 15.98","fWholesalePrice":"S$ 11.19"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":58.10,"retailPrice":83.00,"fRetailPrice":"HK$ 83.00","fWholesalePrice":"HK$ 58.10"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":231.00,"retailPrice":330.00,"fRetailPrice":"NT$ 330","fWholesalePrice":"NT$ 231"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":111300.00,"retailPrice":159000.00,"fRetailPrice":"Rp 159ribu","fWholesalePrice":"Rp 111.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":469.00,"retailPrice":670.00,"fRetailPrice":"Rs 670","fWholesalePrice":"Rs 469"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":594.30,"retailPrice":849.00,"fRetailPrice":"849 р.","fWholesalePrice":"594,30 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":20.99,"retailPrice":29.99,"fRetailPrice":"29,99 TL","fWholesalePrice":"20,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":30.73,"retailPrice":43.90,"fRetailPrice":"NIS 43.90","fWholesalePrice":"NIS 30.73"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":135.08,"retailPrice":219.99,"fRetailPrice":"R219.99","fWholesalePrice":"R135.08"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":27.99,"retailPrice":39.99,"fRetailPrice":"SR 39.99","fWholesalePrice":"SR 27.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":27.99,"retailPrice":39.99,"fRetailPrice":"AED 39.99","fWholesalePrice":"AED 27.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":4.95,"retailPrice":8.49,"fRetailPrice":"£8.49","fWholesalePrice":"£4.95"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":49.84,"retailPrice":89.00,"fRetailPrice":"89,00 kr","fWholesalePrice":"49,84 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":66.64,"retailPrice":119.00,"fRetailPrice":"119,00 kr","fWholesalePrice":"66,64 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":7.13,"retailPrice":11.00,"fRetailPrice":"CHF 11.00","fWholesalePrice":"CHF 7.13"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":66.64,"retailPrice":119.00,"fRetailPrice":"119,00 kr","fWholesalePrice":"66,64 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.58,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,58 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.52,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,52 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.46,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,46 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.46,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,46 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.41,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,41 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.41,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,41 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.41,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,41 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.41,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,41 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.41,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,41 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.36,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,36 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.36,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,36 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.36,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,36 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.36,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,36 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.36,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,36 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.36,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,36 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.31,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,31 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.31,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,31 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.25,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,25 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.25,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,25 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.25,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,25 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.25,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,25 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.20,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,20 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.41,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,41 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.06,"retailPrice":10.99,"fRetailPrice":"10,99 €","fWholesalePrice":"6,06 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":8.47,"retailPrice":12.09,"fRetailPrice":"$12.09","fWholesalePrice":"$8.47"}]},{"tierStem":"12","tierName":"Tier 12","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":8.40,"retailPrice":11.99,"fRetailPrice":"$11.99","fWholesalePrice":"$8.40"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":11.89,"retailPrice":16.99,"fRetailPrice":"$16.99","fWholesalePrice":"$11.89"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":146.30,"retailPrice":209.00,"fRetailPrice":"$209.00","fWholesalePrice":"$146.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":11.45,"retailPrice":17.99,"fRetailPrice":"$17.99","fWholesalePrice":"$11.45"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":12.59,"retailPrice":17.99,"fRetailPrice":"$17.99","fWholesalePrice":"$12.59"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":980.00,"retailPrice":1400.00000,"fRetailPrice":"¥1,400","fWholesalePrice":"¥980"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":53.51,"retailPrice":78.00,"fRetailPrice":"¥78.00","fWholesalePrice":"¥53.51"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":11.89,"retailPrice":16.98,"fRetailPrice":"S$ 16.98","fWholesalePrice":"S$ 11.89"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":61.60,"retailPrice":88.00,"fRetailPrice":"HK$ 88.00","fWholesalePrice":"HK$ 61.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":252.00,"retailPrice":360.00,"fRetailPrice":"NT$ 360","fWholesalePrice":"NT$ 252"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":125300.00,"retailPrice":179000.00,"fRetailPrice":"Rp 179ribu","fWholesalePrice":"Rp 125.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":525.00,"retailPrice":750.00,"fRetailPrice":"Rs 750","fWholesalePrice":"Rs 525"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":629.30,"retailPrice":899.00,"fRetailPrice":"899 р.","fWholesalePrice":"629,30 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":23.09,"retailPrice":32.99,"fRetailPrice":"32,99 TL","fWholesalePrice":"23,09 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":33.53,"retailPrice":47.90,"fRetailPrice":"NIS 47.90","fWholesalePrice":"NIS 33.53"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":141.22,"retailPrice":229.99,"fRetailPrice":"R229.99","fWholesalePrice":"R141.22"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":31.49,"retailPrice":44.99,"fRetailPrice":"SR 44.99","fWholesalePrice":"SR 31.49"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":31.49,"retailPrice":44.99,"fRetailPrice":"AED 44.99","fWholesalePrice":"AED 31.49"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":5.24,"retailPrice":8.99,"fRetailPrice":"£8.99","fWholesalePrice":"£5.24"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":53.20,"retailPrice":95.00,"fRetailPrice":"95,00 kr","fWholesalePrice":"53,20 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":72.24,"retailPrice":129.00,"fRetailPrice":"129,00 kr","fWholesalePrice":"72,24 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":7.78,"retailPrice":12.00,"fRetailPrice":"CHF 12.00","fWholesalePrice":"CHF 7.78"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":72.24,"retailPrice":129.00,"fRetailPrice":"129,00 kr","fWholesalePrice":"72,24 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.17,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"7,17 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.11,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"7,11 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.05,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"7,05 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.05,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"7,05 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.99,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,99 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.99,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,99 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.99,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,99 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.99,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,99 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.99,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,99 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.94,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,94 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.94,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,94 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.94,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,94 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.94,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,94 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.94,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,94 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.94,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,94 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.88,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,88 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.88,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,88 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.82,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,82 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.82,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,82 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.82,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,82 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.82,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,82 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.77,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,77 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.99,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,99 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":6.61,"retailPrice":11.99,"fRetailPrice":"11,99 €","fWholesalePrice":"6,61 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":9.24,"retailPrice":13.19,"fRetailPrice":"$13.19","fWholesalePrice":"$9.24"}]},{"tierStem":"13","tierName":"Tier 13","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":9.10,"retailPrice":12.99,"fRetailPrice":"$12.99","fWholesalePrice":"$9.10"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":12.59,"retailPrice":17.99,"fRetailPrice":"$17.99","fWholesalePrice":"$12.59"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":160.30,"retailPrice":229.00,"fRetailPrice":"$229.00","fWholesalePrice":"$160.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":12.72,"retailPrice":19.99,"fRetailPrice":"$19.99","fWholesalePrice":"$12.72"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":13.29,"retailPrice":18.99,"fRetailPrice":"$18.99","fWholesalePrice":"$13.29"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":1120.00,"retailPrice":1600.00000,"fRetailPrice":"¥1,600","fWholesalePrice":"¥1,120"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":60.37,"retailPrice":88.00,"fRetailPrice":"¥88.00","fWholesalePrice":"¥60.37"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":12.59,"retailPrice":17.98,"fRetailPrice":"S$ 17.98","fWholesalePrice":"S$ 12.59"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":68.60,"retailPrice":98.00,"fRetailPrice":"HK$ 98.00","fWholesalePrice":"HK$ 68.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":273.00,"retailPrice":390.00,"fRetailPrice":"NT$ 390","fWholesalePrice":"NT$ 273"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":132300.00,"retailPrice":189000.00,"fRetailPrice":"Rp 189ribu","fWholesalePrice":"Rp 132.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":553.00,"retailPrice":790.00,"fRetailPrice":"Rs 790","fWholesalePrice":"Rs 553"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":699.30,"retailPrice":999.00,"fRetailPrice":"999 р.","fWholesalePrice":"699,30 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":24.49,"retailPrice":34.99,"fRetailPrice":"34,99 TL","fWholesalePrice":"24,49 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":36.33,"retailPrice":51.90,"fRetailPrice":"NIS 51.90","fWholesalePrice":"NIS 36.33"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":153.50,"retailPrice":249.99,"fRetailPrice":"R249.99","fWholesalePrice":"R153.50"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":33.59,"retailPrice":47.99,"fRetailPrice":"SR 47.99","fWholesalePrice":"SR 33.59"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":33.59,"retailPrice":47.99,"fRetailPrice":"AED 47.99","fWholesalePrice":"AED 33.59"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":5.83,"retailPrice":9.99,"fRetailPrice":"£9.99","fWholesalePrice":"£5.83"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":55.44,"retailPrice":99.00,"fRetailPrice":"99,00 kr","fWholesalePrice":"55,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":77.84,"retailPrice":139.00,"fRetailPrice":"139,00 kr","fWholesalePrice":"77,84 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":8.43,"retailPrice":13.00,"fRetailPrice":"CHF 13.00","fWholesalePrice":"CHF 8.43"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":77.84,"retailPrice":139.00,"fRetailPrice":"139,00 kr","fWholesalePrice":"77,84 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.77,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,77 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.71,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,71 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.64,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,64 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.64,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,64 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.58,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,58 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.58,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,58 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.58,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,58 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.58,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,58 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.58,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,58 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.51,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,51 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.51,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,51 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.51,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,51 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.51,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,51 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.51,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,51 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.51,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,51 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.45,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,45 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.45,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,45 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.39,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,39 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.39,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,39 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.39,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,39 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.39,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,39 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.33,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,33 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.58,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,58 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.16,"retailPrice":12.99,"fRetailPrice":"12,99 €","fWholesalePrice":"7,16 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":10.01,"retailPrice":14.29,"fRetailPrice":"$14.29","fWholesalePrice":"$10.01"}]},{"tierStem":"14","tierName":"Tier 14","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":9.80,"retailPrice":13.99,"fRetailPrice":"$13.99","fWholesalePrice":"$9.80"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":13.99,"retailPrice":19.99,"fRetailPrice":"$19.99","fWholesalePrice":"$13.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":174.30,"retailPrice":249.00,"fRetailPrice":"$249.00","fWholesalePrice":"$174.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":13.99,"retailPrice":21.99,"fRetailPrice":"$21.99","fWholesalePrice":"$13.99"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":14.69,"retailPrice":20.99,"fRetailPrice":"$20.99","fWholesalePrice":"$14.69"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":1190.00,"retailPrice":1700.00000,"fRetailPrice":"¥1,700","fWholesalePrice":"¥1,190"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":63.80,"retailPrice":93.00,"fRetailPrice":"¥93.00","fWholesalePrice":"¥63.80"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":13.99,"retailPrice":19.98,"fRetailPrice":"S$ 19.98","fWholesalePrice":"S$ 13.99"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":75.60,"retailPrice":108.00,"fRetailPrice":"HK$ 108.00","fWholesalePrice":"HK$ 75.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":294.00,"retailPrice":420.00,"fRetailPrice":"NT$ 420","fWholesalePrice":"NT$ 294"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":139300.00,"retailPrice":199000.00,"fRetailPrice":"Rp 199ribu","fWholesalePrice":"Rp 139.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":595.00,"retailPrice":850.00,"fRetailPrice":"Rs 850","fWholesalePrice":"Rs 595"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":763.00,"retailPrice":1090.00,"fRetailPrice":"1 090 р.","fWholesalePrice":"763 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":26.59,"retailPrice":37.99,"fRetailPrice":"37,99 TL","fWholesalePrice":"26,59 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":39.13,"retailPrice":55.90,"fRetailPrice":"NIS 55.90","fWholesalePrice":"NIS 39.13"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":165.78,"retailPrice":269.99,"fRetailPrice":"R269.99","fWholesalePrice":"R165.78"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":34.99,"retailPrice":49.99,"fRetailPrice":"SR 49.99","fWholesalePrice":"SR 34.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":34.99,"retailPrice":49.99,"fRetailPrice":"AED 49.99","fWholesalePrice":"AED 34.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":6.12,"retailPrice":10.49,"fRetailPrice":"£10.49","fWholesalePrice":"£6.12"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":61.04,"retailPrice":109.00,"fRetailPrice":"109,00 kr","fWholesalePrice":"61,04 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":83.44,"retailPrice":149.00,"fRetailPrice":"149,00 kr","fWholesalePrice":"83,44 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":9.07,"retailPrice":14.00,"fRetailPrice":"CHF 14.00","fWholesalePrice":"CHF 9.07"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":83.44,"retailPrice":149.00,"fRetailPrice":"149,00 kr","fWholesalePrice":"83,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.37,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"8,37 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.30,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"8,30 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.23,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"8,23 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.23,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"8,23 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.16,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"8,16 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.16,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"8,16 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.16,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"8,16 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.16,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"8,16 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.16,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"8,16 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.09,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"8,09 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.09,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"8,09 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.09,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"8,09 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.09,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"8,09 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.09,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"8,09 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.09,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"8,09 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.03,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"8,03 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.03,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"8,03 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.96,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"7,96 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.96,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"7,96 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.96,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"7,96 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.96,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"7,96 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.90,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"7,90 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.16,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"8,16 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":7.71,"retailPrice":13.99,"fRetailPrice":"13,99 €","fWholesalePrice":"7,71 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":10.78,"retailPrice":15.39,"fRetailPrice":"$15.39","fWholesalePrice":"$10.78"}]},{"tierStem":"15","tierName":"Tier 15","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":10.50,"retailPrice":14.99,"fRetailPrice":"$14.99","fWholesalePrice":"$10.50"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":14.69,"retailPrice":20.99,"fRetailPrice":"$20.99","fWholesalePrice":"$14.69"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":181.30,"retailPrice":259.00,"fRetailPrice":"$259.00","fWholesalePrice":"$181.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":14.63,"retailPrice":22.99,"fRetailPrice":"$22.99","fWholesalePrice":"$14.63"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":15.39,"retailPrice":21.99,"fRetailPrice":"$21.99","fWholesalePrice":"$15.39"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":1260.00,"retailPrice":1800.00000,"fRetailPrice":"¥1,800","fWholesalePrice":"¥1,260"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":67.24,"retailPrice":98.00,"fRetailPrice":"¥98.00","fWholesalePrice":"¥67.24"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":15.39,"retailPrice":21.98,"fRetailPrice":"S$ 21.98","fWholesalePrice":"S$ 15.39"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":82.60,"retailPrice":118.00,"fRetailPrice":"HK$ 118.00","fWholesalePrice":"HK$ 82.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":315.00,"retailPrice":450.00,"fRetailPrice":"NT$ 450","fWholesalePrice":"NT$ 315"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":153300.00,"retailPrice":219000.00,"fRetailPrice":"Rp 219ribu","fWholesalePrice":"Rp 153.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":644.00,"retailPrice":920.00,"fRetailPrice":"Rs 920","fWholesalePrice":"Rs 644"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":805.00,"retailPrice":1150.00,"fRetailPrice":"1 150 р.","fWholesalePrice":"805 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":27.99,"retailPrice":39.99,"fRetailPrice":"39,99 TL","fWholesalePrice":"27,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":41.93,"retailPrice":59.90,"fRetailPrice":"NIS 59.90","fWholesalePrice":"NIS 41.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":178.06,"retailPrice":289.99,"fRetailPrice":"R289.99","fWholesalePrice":"R178.06"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":38.49,"retailPrice":54.99,"fRetailPrice":"SR 54.99","fWholesalePrice":"SR 38.49"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":38.49,"retailPrice":54.99,"fRetailPrice":"AED 54.99","fWholesalePrice":"AED 38.49"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":6.41,"retailPrice":10.99,"fRetailPrice":"£10.99","fWholesalePrice":"£6.41"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":66.64,"retailPrice":119.00,"fRetailPrice":"119,00 kr","fWholesalePrice":"66,64 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":89.04,"retailPrice":159.00,"fRetailPrice":"159,00 kr","fWholesalePrice":"89,04 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":9.72,"retailPrice":15.00,"fRetailPrice":"CHF 15.00","fWholesalePrice":"CHF 9.72"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":89.04,"retailPrice":159.00,"fRetailPrice":"159,00 kr","fWholesalePrice":"89,04 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.97,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,97 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.89,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,89 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.82,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,82 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.82,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,82 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.74,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,74 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.74,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,74 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.74,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,74 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.74,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,74 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.74,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,74 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.67,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,67 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.67,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,67 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.67,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,67 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.67,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,67 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.67,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,67 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.67,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,67 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.60,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,60 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.60,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,60 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.53,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,53 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.53,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,53 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.53,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,53 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.53,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,53 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.46,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,46 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.74,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,74 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.26,"retailPrice":14.99,"fRetailPrice":"14,99 €","fWholesalePrice":"8,26 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":11.55,"retailPrice":16.49,"fRetailPrice":"$16.49","fWholesalePrice":"$11.55"}]},{"tierStem":"16","tierName":"Tier 16","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":11.20,"retailPrice":15.99,"fRetailPrice":"$15.99","fWholesalePrice":"$11.20"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":15.39,"retailPrice":21.99,"fRetailPrice":"$21.99","fWholesalePrice":"$15.39"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":195.30,"retailPrice":279.00,"fRetailPrice":"$279.00","fWholesalePrice":"$195.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":15.90,"retailPrice":24.99,"fRetailPrice":"$24.99","fWholesalePrice":"$15.90"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":16.79,"retailPrice":23.99,"fRetailPrice":"$23.99","fWholesalePrice":"$16.79"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":1330.00,"retailPrice":1900.00000,"fRetailPrice":"¥1,900","fWholesalePrice":"¥1,330"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":74.10,"retailPrice":108.00,"fRetailPrice":"¥108.00","fWholesalePrice":"¥74.10"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":16.09,"retailPrice":22.98,"fRetailPrice":"S$ 22.98","fWholesalePrice":"S$ 16.09"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":86.10,"retailPrice":123.00,"fRetailPrice":"HK$ 123.00","fWholesalePrice":"HK$ 86.10"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":343.00,"retailPrice":490.00,"fRetailPrice":"NT$ 490","fWholesalePrice":"NT$ 343"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":167300.00,"retailPrice":239000.00,"fRetailPrice":"Rp 239ribu","fWholesalePrice":"Rp 167.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":693.00,"retailPrice":990.00,"fRetailPrice":"Rs 990","fWholesalePrice":"Rs 693"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":833.00,"retailPrice":1190.00,"fRetailPrice":"1 190 р.","fWholesalePrice":"833 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":30.09,"retailPrice":42.99,"fRetailPrice":"42,99 TL","fWholesalePrice":"30,09 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":44.73,"retailPrice":63.90,"fRetailPrice":"NIS 63.90","fWholesalePrice":"NIS 44.73"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":190.34,"retailPrice":309.99,"fRetailPrice":"R309.99","fWholesalePrice":"R190.34"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":41.99,"retailPrice":59.99,"fRetailPrice":"SR 59.99","fWholesalePrice":"SR 41.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":41.99,"retailPrice":59.99,"fRetailPrice":"AED 59.99","fWholesalePrice":"AED 41.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":6.99,"retailPrice":11.99,"fRetailPrice":"£11.99","fWholesalePrice":"£6.99"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":70.00,"retailPrice":125.00,"fRetailPrice":"125,00 kr","fWholesalePrice":"70,00 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":94.64,"retailPrice":169.00,"fRetailPrice":"169,00 kr","fWholesalePrice":"94,64 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":10.37,"retailPrice":16.00,"fRetailPrice":"CHF 16.00","fWholesalePrice":"CHF 10.37"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":94.64,"retailPrice":169.00,"fRetailPrice":"169,00 kr","fWholesalePrice":"94,64 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.57,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,57 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.49,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,49 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.41,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,41 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.41,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,41 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.33,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,33 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.33,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,33 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.33,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,33 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.33,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,33 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.33,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,33 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.25,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,25 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.25,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,25 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.25,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,25 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.25,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,25 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.25,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,25 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.25,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,25 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.17,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,17 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.17,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,17 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.10,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,10 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.10,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,10 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.10,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,10 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.10,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,10 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.03,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,03 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.33,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"9,33 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":8.81,"retailPrice":15.99,"fRetailPrice":"15,99 €","fWholesalePrice":"8,81 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":12.32,"retailPrice":17.59,"fRetailPrice":"$17.59","fWholesalePrice":"$12.32"}]},{"tierStem":"17","tierName":"Tier 17","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":11.90,"retailPrice":16.99,"fRetailPrice":"$16.99","fWholesalePrice":"$11.90"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":16.79,"retailPrice":23.99,"fRetailPrice":"$23.99","fWholesalePrice":"$16.79"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":209.30,"retailPrice":299.00,"fRetailPrice":"$299.00","fWholesalePrice":"$209.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":17.18,"retailPrice":26.99,"fRetailPrice":"$26.99","fWholesalePrice":"$17.18"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":17.49,"retailPrice":24.99,"fRetailPrice":"$24.99","fWholesalePrice":"$17.49"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":1400.00,"retailPrice":2000.00000,"fRetailPrice":"¥2,000","fWholesalePrice":"¥1,400"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":77.53,"retailPrice":113.00,"fRetailPrice":"¥113.00","fWholesalePrice":"¥77.53"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":16.79,"retailPrice":23.98,"fRetailPrice":"S$ 23.98","fWholesalePrice":"S$ 16.79"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":89.60,"retailPrice":128.00,"fRetailPrice":"HK$ 128.00","fWholesalePrice":"HK$ 89.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":364.00,"retailPrice":520.00,"fRetailPrice":"NT$ 520","fWholesalePrice":"NT$ 364"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":174300.00,"retailPrice":249000.00,"fRetailPrice":"Rp 249ribu","fWholesalePrice":"Rp 174.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":735.00,"retailPrice":1050.00,"fRetailPrice":"Rs 1,050","fWholesalePrice":"Rs 735"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":903.00,"retailPrice":1290.00,"fRetailPrice":"1 290 р.","fWholesalePrice":"903 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":31.49,"retailPrice":44.99,"fRetailPrice":"44,99 TL","fWholesalePrice":"31,49 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":47.53,"retailPrice":67.90,"fRetailPrice":"NIS 67.90","fWholesalePrice":"NIS 47.53"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":202.63,"retailPrice":329.99,"fRetailPrice":"R329.99","fWholesalePrice":"R202.63"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":45.49,"retailPrice":64.99,"fRetailPrice":"SR 64.99","fWholesalePrice":"SR 45.49"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":45.49,"retailPrice":64.99,"fRetailPrice":"AED 64.99","fWholesalePrice":"AED 45.49"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":7.58,"retailPrice":12.99,"fRetailPrice":"£12.99","fWholesalePrice":"£7.58"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":72.24,"retailPrice":129.00,"fRetailPrice":"129,00 kr","fWholesalePrice":"72,24 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":100.24,"retailPrice":179.00,"fRetailPrice":"179,00 kr","fWholesalePrice":"100,24 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":11.02,"retailPrice":17.00,"fRetailPrice":"CHF 17.00","fWholesalePrice":"CHF 11.02"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":100.24,"retailPrice":179.00,"fRetailPrice":"179,00 kr","fWholesalePrice":"100,24 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.16,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"10,16 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.08,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"10,08 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.99,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,99 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.99,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,99 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.91,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,91 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.91,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,91 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.91,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,91 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.91,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,91 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.91,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,91 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.83,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,83 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.83,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,83 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.83,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,83 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.83,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,83 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.83,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,83 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.83,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,83 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.75,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,75 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.75,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,75 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.67,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,67 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.67,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,67 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.67,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,67 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.67,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,67 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.59,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,59 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.91,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,91 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.36,"retailPrice":16.99,"fRetailPrice":"16,99 €","fWholesalePrice":"9,36 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":13.09,"retailPrice":18.69,"fRetailPrice":"$18.69","fWholesalePrice":"$13.09"}]},{"tierStem":"18","tierName":"Tier 18","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":12.60,"retailPrice":17.99,"fRetailPrice":"$17.99","fWholesalePrice":"$12.60"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":17.49,"retailPrice":24.99,"fRetailPrice":"$24.99","fWholesalePrice":"$17.49"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":216.30,"retailPrice":309.00,"fRetailPrice":"$309.00","fWholesalePrice":"$216.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":17.81,"retailPrice":27.99,"fRetailPrice":"$27.99","fWholesalePrice":"$17.81"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":18.89,"retailPrice":26.99,"fRetailPrice":"$26.99","fWholesalePrice":"$18.89"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":1540.00,"retailPrice":2200.00000,"fRetailPrice":"¥2,200","fWholesalePrice":"¥1,540"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":80.96,"retailPrice":118.00,"fRetailPrice":"¥118.00","fWholesalePrice":"¥80.96"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":18.19,"retailPrice":25.98,"fRetailPrice":"S$ 25.98","fWholesalePrice":"S$ 18.19"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":96.60,"retailPrice":138.00,"fRetailPrice":"HK$ 138.00","fWholesalePrice":"HK$ 96.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":378.00,"retailPrice":540.00,"fRetailPrice":"NT$ 540","fWholesalePrice":"NT$ 378"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":188300.00,"retailPrice":269000.00,"fRetailPrice":"Rp 269ribu","fWholesalePrice":"Rp 188.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":770.00,"retailPrice":1100.00,"fRetailPrice":"Rs 1,100","fWholesalePrice":"Rs 770"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":973.00,"retailPrice":1390.00,"fRetailPrice":"1 390 р.","fWholesalePrice":"973 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":33.59,"retailPrice":47.99,"fRetailPrice":"47,99 TL","fWholesalePrice":"33,59 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":50.33,"retailPrice":71.90,"fRetailPrice":"NIS 71.90","fWholesalePrice":"NIS 50.33"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":214.91,"retailPrice":349.99,"fRetailPrice":"R349.99","fWholesalePrice":"R214.91"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":47.59,"retailPrice":67.99,"fRetailPrice":"SR 67.99","fWholesalePrice":"SR 47.59"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":47.59,"retailPrice":67.99,"fRetailPrice":"AED 67.99","fWholesalePrice":"AED 47.59"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":7.87,"retailPrice":13.49,"fRetailPrice":"£13.49","fWholesalePrice":"£7.87"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":77.84,"retailPrice":139.00,"fRetailPrice":"139,00 kr","fWholesalePrice":"77,84 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":105.84,"retailPrice":189.00,"fRetailPrice":"189,00 kr","fWholesalePrice":"105,84 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":11.67,"retailPrice":18.00,"fRetailPrice":"CHF 18.00","fWholesalePrice":"CHF 11.67"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":105.84,"retailPrice":189.00,"fRetailPrice":"189,00 kr","fWholesalePrice":"105,84 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.76,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,76 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.67,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,67 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.58,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,58 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.58,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,58 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.49,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,49 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.49,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,49 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.49,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,49 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.49,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,49 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.49,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,49 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.41,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,41 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.41,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,41 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.41,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,41 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.41,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,41 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.41,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,41 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.41,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,41 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.32,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,32 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.32,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,32 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.24,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,24 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.24,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,24 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.24,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,24 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.24,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,24 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.16,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,16 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.49,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"10,49 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":9.92,"retailPrice":17.99,"fRetailPrice":"17,99 €","fWholesalePrice":"9,92 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":13.86,"retailPrice":19.79,"fRetailPrice":"$19.79","fWholesalePrice":"$13.86"}]},{"tierStem":"19","tierName":"Tier 19","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":13.30,"retailPrice":18.99,"fRetailPrice":"$18.99","fWholesalePrice":"$13.30"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":18.19,"retailPrice":25.99,"fRetailPrice":"$25.99","fWholesalePrice":"$18.19"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":230.30,"retailPrice":329.00,"fRetailPrice":"$329.00","fWholesalePrice":"$230.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":19.08,"retailPrice":29.99,"fRetailPrice":"$29.99","fWholesalePrice":"$19.08"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":19.59,"retailPrice":27.99,"fRetailPrice":"$27.99","fWholesalePrice":"$19.59"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":1610.00,"retailPrice":2300.00000,"fRetailPrice":"¥2,300","fWholesalePrice":"¥1,610"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":84.39,"retailPrice":123.00,"fRetailPrice":"¥123.00","fWholesalePrice":"¥84.39"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":18.89,"retailPrice":26.98,"fRetailPrice":"S$ 26.98","fWholesalePrice":"S$ 18.89"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":103.60,"retailPrice":148.00,"fRetailPrice":"HK$ 148.00","fWholesalePrice":"HK$ 103.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":399.00,"retailPrice":570.00,"fRetailPrice":"NT$ 570","fWholesalePrice":"NT$ 399"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":195300.00,"retailPrice":279000.00,"fRetailPrice":"Rp 279ribu","fWholesalePrice":"Rp 195.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":805.00,"retailPrice":1150.00,"fRetailPrice":"Rs 1,150","fWholesalePrice":"Rs 805"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1015.00,"retailPrice":1450.00,"fRetailPrice":"1 450 р.","fWholesalePrice":"1 015 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":34.99,"retailPrice":49.99,"fRetailPrice":"49,99 TL","fWholesalePrice":"34,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":53.13,"retailPrice":75.90,"fRetailPrice":"NIS 75.90","fWholesalePrice":"NIS 53.13"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":227.19,"retailPrice":369.99,"fRetailPrice":"R369.99","fWholesalePrice":"R227.19"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":48.99,"retailPrice":69.99,"fRetailPrice":"SR 69.99","fWholesalePrice":"SR 48.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":48.99,"retailPrice":69.99,"fRetailPrice":"AED 69.99","fWholesalePrice":"AED 48.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":8.16,"retailPrice":13.99,"fRetailPrice":"£13.99","fWholesalePrice":"£8.16"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":83.44,"retailPrice":149.00,"fRetailPrice":"149,00 kr","fWholesalePrice":"83,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":111.44,"retailPrice":199.00,"fRetailPrice":"199,00 kr","fWholesalePrice":"111,44 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":12.31,"retailPrice":19.00,"fRetailPrice":"CHF 19.00","fWholesalePrice":"CHF 12.31"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":111.44,"retailPrice":199.00,"fRetailPrice":"199,00 kr","fWholesalePrice":"111,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.36,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"11,36 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.27,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"11,27 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.17,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"11,17 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.17,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"11,17 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.08,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"11,08 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.08,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"11,08 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.08,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"11,08 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.08,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"11,08 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.08,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"11,08 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.99,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"10,99 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.99,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"10,99 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.99,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"10,99 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.99,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"10,99 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.99,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"10,99 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.99,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"10,99 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.90,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"10,90 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.90,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"10,90 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.81,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"10,81 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.81,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"10,81 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.81,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"10,81 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.81,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"10,81 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.72,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"10,72 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.08,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"11,08 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":10.47,"retailPrice":18.99,"fRetailPrice":"18,99 €","fWholesalePrice":"10,47 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":14.63,"retailPrice":20.89,"fRetailPrice":"$20.89","fWholesalePrice":"$14.63"}]},{"tierStem":"20","tierName":"Tier 20","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":14.00,"retailPrice":19.99,"fRetailPrice":"$19.99","fWholesalePrice":"$14.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":19.59,"retailPrice":27.99,"fRetailPrice":"$27.99","fWholesalePrice":"$19.59"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":244.30,"retailPrice":349.00,"fRetailPrice":"$349.00","fWholesalePrice":"$244.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":19.72,"retailPrice":30.99,"fRetailPrice":"$30.99","fWholesalePrice":"$19.72"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":20.99,"retailPrice":29.99,"fRetailPrice":"$29.99","fWholesalePrice":"$20.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":1680.00,"retailPrice":2400.00000,"fRetailPrice":"¥2,400","fWholesalePrice":"¥1,680"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":87.82,"retailPrice":128.00,"fRetailPrice":"¥128.00","fWholesalePrice":"¥87.82"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":20.29,"retailPrice":28.98,"fRetailPrice":"S$ 28.98","fWholesalePrice":"S$ 20.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":110.60,"retailPrice":158.00,"fRetailPrice":"HK$ 158.00","fWholesalePrice":"HK$ 110.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":413.00,"retailPrice":590.00,"fRetailPrice":"NT$ 590","fWholesalePrice":"NT$ 413"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":209300.00,"retailPrice":299000.00,"fRetailPrice":"Rp 299ribu","fWholesalePrice":"Rp 209.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":840.00,"retailPrice":1200.00,"fRetailPrice":"Rs 1,200","fWholesalePrice":"Rs 840"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1043.00,"retailPrice":1490.00,"fRetailPrice":"1 490 р.","fWholesalePrice":"1 043 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":37.09,"retailPrice":52.99,"fRetailPrice":"52,99 TL","fWholesalePrice":"37,09 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":55.93,"retailPrice":79.90,"fRetailPrice":"NIS 79.90","fWholesalePrice":"NIS 55.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":233.33,"retailPrice":379.99,"fRetailPrice":"R379.99","fWholesalePrice":"R233.33"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":52.49,"retailPrice":74.99,"fRetailPrice":"SR 74.99","fWholesalePrice":"SR 52.49"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":52.49,"retailPrice":74.99,"fRetailPrice":"AED 74.99","fWholesalePrice":"AED 52.49"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":8.74,"retailPrice":14.99,"fRetailPrice":"£14.99","fWholesalePrice":"£8.74"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":89.04,"retailPrice":159.00,"fRetailPrice":"159,00 kr","fWholesalePrice":"89,04 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":117.04,"retailPrice":209.00,"fRetailPrice":"209,00 kr","fWholesalePrice":"117,04 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":12.96,"retailPrice":20.00,"fRetailPrice":"CHF 20.00","fWholesalePrice":"CHF 12.96"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":122.64,"retailPrice":219.00,"fRetailPrice":"219,00 kr","fWholesalePrice":"122,64 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.96,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,96 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.86,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,86 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.76,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,76 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.76,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,76 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.66,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,66 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.66,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,66 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.66,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,66 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.66,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,66 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.66,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,66 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.56,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,56 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.56,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,56 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.56,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,56 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.56,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,56 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.56,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,56 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.56,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,56 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.47,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,47 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.47,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,47 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.38,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,38 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.38,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,38 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.38,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,38 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.38,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,38 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.28,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,28 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.66,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,66 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.02,"retailPrice":19.99,"fRetailPrice":"19,99 €","fWholesalePrice":"11,02 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":15.40,"retailPrice":21.99,"fRetailPrice":"$21.99","fWholesalePrice":"$15.40"}]},{"tierStem":"21","tierName":"Tier 21","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":14.70,"retailPrice":20.99,"fRetailPrice":"$20.99","fWholesalePrice":"$14.70"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":20.29,"retailPrice":28.99,"fRetailPrice":"$28.99","fWholesalePrice":"$20.29"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":258.30,"retailPrice":369.00,"fRetailPrice":"$369.00","fWholesalePrice":"$258.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":20.99,"retailPrice":32.99,"fRetailPrice":"$32.99","fWholesalePrice":"$20.99"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":21.69,"retailPrice":30.99,"fRetailPrice":"$30.99","fWholesalePrice":"$21.69"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":1750.00,"retailPrice":2500.00000,"fRetailPrice":"¥2,500","fWholesalePrice":"¥1,750"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":94.68,"retailPrice":138.00,"fRetailPrice":"¥138.00","fWholesalePrice":"¥94.68"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":20.99,"retailPrice":29.98,"fRetailPrice":"S$ 29.98","fWholesalePrice":"S$ 20.99"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":114.10,"retailPrice":163.00,"fRetailPrice":"HK$ 163.00","fWholesalePrice":"HK$ 114.10"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":441.00,"retailPrice":630.00,"fRetailPrice":"NT$ 630","fWholesalePrice":"NT$ 441"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":216300.00,"retailPrice":309000.00,"fRetailPrice":"Rp 309ribu","fWholesalePrice":"Rp 216.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":910.00,"retailPrice":1300.00,"fRetailPrice":"Rs 1,300","fWholesalePrice":"Rs 910"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1113.00,"retailPrice":1590.00,"fRetailPrice":"1 590 р.","fWholesalePrice":"1 113 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":38.49,"retailPrice":54.99,"fRetailPrice":"54,99 TL","fWholesalePrice":"38,49 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":58.73,"retailPrice":83.90,"fRetailPrice":"NIS 83.90","fWholesalePrice":"NIS 58.73"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":245.61,"retailPrice":399.99,"fRetailPrice":"R399.99","fWholesalePrice":"R245.61"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":54.59,"retailPrice":77.99,"fRetailPrice":"SR 77.99","fWholesalePrice":"SR 54.59"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":54.59,"retailPrice":77.99,"fRetailPrice":"AED 77.99","fWholesalePrice":"AED 54.59"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":9.33,"retailPrice":15.99,"fRetailPrice":"£15.99","fWholesalePrice":"£9.33"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":92.40,"retailPrice":165.00,"fRetailPrice":"165,00 kr","fWholesalePrice":"92,40 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":122.64,"retailPrice":219.00,"fRetailPrice":"219,00 kr","fWholesalePrice":"122,64 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":13.61,"retailPrice":21.00,"fRetailPrice":"CHF 21.00","fWholesalePrice":"CHF 13.61"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":128.24,"retailPrice":229.00,"fRetailPrice":"229,00 kr","fWholesalePrice":"128,24 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.56,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"12,56 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.45,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"12,45 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.35,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"12,35 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.35,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"12,35 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.24,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"12,24 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.24,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"12,24 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.24,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"12,24 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.24,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"12,24 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.24,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"12,24 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.14,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"12,14 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.14,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"12,14 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.14,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"12,14 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.14,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"12,14 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.14,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"12,14 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.14,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"12,14 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.04,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"12,04 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.04,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"12,04 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.95,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"11,95 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.95,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"11,95 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.95,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"11,95 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.95,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"11,95 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.85,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"11,85 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.24,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"12,24 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":11.57,"retailPrice":20.99,"fRetailPrice":"20,99 €","fWholesalePrice":"11,57 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":16.17,"retailPrice":23.09,"fRetailPrice":"$23.09","fWholesalePrice":"$16.17"}]},{"tierStem":"22","tierName":"Tier 22","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":15.40,"retailPrice":21.99,"fRetailPrice":"$21.99","fWholesalePrice":"$15.40"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":20.99,"retailPrice":29.99,"fRetailPrice":"$29.99","fWholesalePrice":"$20.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":265.30,"retailPrice":379.00,"fRetailPrice":"$379.00","fWholesalePrice":"$265.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":22.27,"retailPrice":34.99,"fRetailPrice":"$34.99","fWholesalePrice":"$22.27"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":23.09,"retailPrice":32.99,"fRetailPrice":"$32.99","fWholesalePrice":"$23.09"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":1820.00,"retailPrice":2600.00000,"fRetailPrice":"¥2,600","fWholesalePrice":"¥1,820"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":101.54,"retailPrice":148.00,"fRetailPrice":"¥148.00","fWholesalePrice":"¥101.54"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":22.39,"retailPrice":31.98,"fRetailPrice":"S$ 31.98","fWholesalePrice":"S$ 22.39"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":117.60,"retailPrice":168.00,"fRetailPrice":"HK$ 168.00","fWholesalePrice":"HK$ 117.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":462.00,"retailPrice":660.00,"fRetailPrice":"NT$ 660","fWholesalePrice":"NT$ 462"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":223300.00,"retailPrice":319000.00,"fRetailPrice":"Rp 319ribu","fWholesalePrice":"Rp 223.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":945.00,"retailPrice":1350.00,"fRetailPrice":"Rs 1,350","fWholesalePrice":"Rs 945"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1183.00,"retailPrice":1690.00,"fRetailPrice":"1 690 р.","fWholesalePrice":"1 183 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":40.59,"retailPrice":57.99,"fRetailPrice":"57,99 TL","fWholesalePrice":"40,59 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":61.53,"retailPrice":87.90,"fRetailPrice":"NIS 87.90","fWholesalePrice":"NIS 61.53"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":257.89,"retailPrice":419.99,"fRetailPrice":"R419.99","fWholesalePrice":"R257.89"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":55.99,"retailPrice":79.99,"fRetailPrice":"SR 79.99","fWholesalePrice":"SR 55.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":55.99,"retailPrice":79.99,"fRetailPrice":"AED 79.99","fWholesalePrice":"AED 55.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":9.62,"retailPrice":16.49,"fRetailPrice":"£16.49","fWholesalePrice":"£9.62"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":94.64,"retailPrice":169.00,"fRetailPrice":"169,00 kr","fWholesalePrice":"94,64 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":128.24,"retailPrice":229.00,"fRetailPrice":"229,00 kr","fWholesalePrice":"128,24 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":14.26,"retailPrice":22.00,"fRetailPrice":"CHF 22.00","fWholesalePrice":"CHF 14.26"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":133.84,"retailPrice":239.00,"fRetailPrice":"239,00 kr","fWholesalePrice":"133,84 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.16,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"13,16 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.04,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"13,04 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.94,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,94 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.94,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,94 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.83,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,83 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.83,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,83 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.83,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,83 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.83,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,83 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.83,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,83 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.72,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,72 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.72,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,72 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.72,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,72 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.72,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,72 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.72,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,72 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.72,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,72 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.62,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,62 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.62,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,62 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.51,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,51 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.51,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,51 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.51,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,51 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.51,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,51 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.41,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,41 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.83,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,83 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.12,"retailPrice":21.99,"fRetailPrice":"21,99 €","fWholesalePrice":"12,12 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":16.94,"retailPrice":24.19,"fRetailPrice":"$24.19","fWholesalePrice":"$16.94"}]},{"tierStem":"23","tierName":"Tier 23","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":16.10,"retailPrice":22.99,"fRetailPrice":"$22.99","fWholesalePrice":"$16.10"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":22.39,"retailPrice":31.99,"fRetailPrice":"$31.99","fWholesalePrice":"$22.39"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":279.30,"retailPrice":399.00,"fRetailPrice":"$399.00","fWholesalePrice":"$279.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":22.90,"retailPrice":35.99,"fRetailPrice":"$35.99","fWholesalePrice":"$22.90"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":23.79,"retailPrice":33.99,"fRetailPrice":"$33.99","fWholesalePrice":"$23.79"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":1960.00,"retailPrice":2800.00000,"fRetailPrice":"¥2,800","fWholesalePrice":"¥1,960"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":104.97,"retailPrice":153.00,"fRetailPrice":"¥153.00","fWholesalePrice":"¥104.97"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":23.09,"retailPrice":32.98,"fRetailPrice":"S$ 32.98","fWholesalePrice":"S$ 23.09"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":124.60,"retailPrice":178.00,"fRetailPrice":"HK$ 178.00","fWholesalePrice":"HK$ 124.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":483.00,"retailPrice":690.00,"fRetailPrice":"NT$ 690","fWholesalePrice":"NT$ 483"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":237300.00,"retailPrice":339000.00,"fRetailPrice":"Rp 339ribu","fWholesalePrice":"Rp 237.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":980.00,"retailPrice":1400.00,"fRetailPrice":"Rs 1,400","fWholesalePrice":"Rs 980"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1225.00,"retailPrice":1750.00,"fRetailPrice":"1 750 р.","fWholesalePrice":"1 225 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":41.99,"retailPrice":59.99,"fRetailPrice":"59,99 TL","fWholesalePrice":"41,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":64.33,"retailPrice":91.90,"fRetailPrice":"NIS 91.90","fWholesalePrice":"NIS 64.33"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":270.17,"retailPrice":439.99,"fRetailPrice":"R439.99","fWholesalePrice":"R270.17"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":59.49,"retailPrice":84.99,"fRetailPrice":"SR 84.99","fWholesalePrice":"SR 59.49"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":59.49,"retailPrice":84.99,"fRetailPrice":"AED 84.99","fWholesalePrice":"AED 59.49"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":9.91,"retailPrice":16.99,"fRetailPrice":"£16.99","fWholesalePrice":"£9.91"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":100.24,"retailPrice":179.00,"fRetailPrice":"179,00 kr","fWholesalePrice":"100,24 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":133.84,"retailPrice":239.00,"fRetailPrice":"239,00 kr","fWholesalePrice":"133,84 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":14.91,"retailPrice":23.00,"fRetailPrice":"CHF 23.00","fWholesalePrice":"CHF 14.91"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":139.44,"retailPrice":249.00,"fRetailPrice":"249,00 kr","fWholesalePrice":"139,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.75,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,75 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.64,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,64 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.52,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,52 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.52,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,52 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.41,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,41 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.41,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,41 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.41,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,41 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.41,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,41 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.41,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,41 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.30,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,30 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.30,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,30 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.30,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,30 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.30,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,30 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.30,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,30 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.30,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,30 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.19,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,19 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.19,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,19 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.08,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,08 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.08,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,08 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.08,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,08 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.08,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,08 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.98,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"12,98 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.41,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"13,41 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":12.67,"retailPrice":22.99,"fRetailPrice":"22,99 €","fWholesalePrice":"12,67 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":17.71,"retailPrice":25.29,"fRetailPrice":"$25.29","fWholesalePrice":"$17.71"}]},{"tierStem":"24","tierName":"Tier 24","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":16.80,"retailPrice":23.99,"fRetailPrice":"$23.99","fWholesalePrice":"$16.80"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":23.09,"retailPrice":32.99,"fRetailPrice":"$32.99","fWholesalePrice":"$23.09"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":293.30,"retailPrice":419.00,"fRetailPrice":"$419.00","fWholesalePrice":"$293.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":24.18,"retailPrice":37.99,"fRetailPrice":"$37.99","fWholesalePrice":"$24.18"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":25.19,"retailPrice":35.99,"fRetailPrice":"$35.99","fWholesalePrice":"$25.19"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":2030.00,"retailPrice":2900.00000,"fRetailPrice":"¥2,900","fWholesalePrice":"¥2,030"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":108.40,"retailPrice":158.00,"fRetailPrice":"¥158.00","fWholesalePrice":"¥108.40"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":23.79,"retailPrice":33.98,"fRetailPrice":"S$ 33.98","fWholesalePrice":"S$ 23.79"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":131.60,"retailPrice":188.00,"fRetailPrice":"HK$ 188.00","fWholesalePrice":"HK$ 131.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":504.00,"retailPrice":720.00,"fRetailPrice":"NT$ 720","fWholesalePrice":"NT$ 504"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":244300.00,"retailPrice":349000.00,"fRetailPrice":"Rp 349ribu","fWholesalePrice":"Rp 244.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1050.00,"retailPrice":1500.00,"fRetailPrice":"Rs 1,500","fWholesalePrice":"Rs 1,050"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1253.00,"retailPrice":1790.00,"fRetailPrice":"1 790 р.","fWholesalePrice":"1 253 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":44.09,"retailPrice":62.99,"fRetailPrice":"62,99 TL","fWholesalePrice":"44,09 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":67.13,"retailPrice":95.90,"fRetailPrice":"NIS 95.90","fWholesalePrice":"NIS 67.13"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":282.45,"retailPrice":459.99,"fRetailPrice":"R459.99","fWholesalePrice":"R282.45"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":61.59,"retailPrice":87.99,"fRetailPrice":"SR 87.99","fWholesalePrice":"SR 61.59"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":61.59,"retailPrice":87.99,"fRetailPrice":"AED 87.99","fWholesalePrice":"AED 61.59"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":10.49,"retailPrice":17.99,"fRetailPrice":"£17.99","fWholesalePrice":"£10.49"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":105.84,"retailPrice":189.00,"fRetailPrice":"189,00 kr","fWholesalePrice":"105,84 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":139.44,"retailPrice":249.00,"fRetailPrice":"249,00 kr","fWholesalePrice":"139,44 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":15.56,"retailPrice":24.00,"fRetailPrice":"CHF 24.00","fWholesalePrice":"CHF 15.56"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":145.04,"retailPrice":259.00,"fRetailPrice":"259,00 kr","fWholesalePrice":"145,04 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.35,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"14,35 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.23,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"14,23 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.11,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"14,11 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.11,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"14,11 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.99,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,99 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.99,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,99 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.99,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,99 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.99,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,99 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.99,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,99 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.88,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,88 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.88,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,88 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.88,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,88 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.88,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,88 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.88,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,88 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.88,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,88 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.76,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,76 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.76,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,76 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.65,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,65 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.65,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,65 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.65,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,65 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.65,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,65 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.54,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,54 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.99,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,99 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.22,"retailPrice":23.99,"fRetailPrice":"23,99 €","fWholesalePrice":"13,22 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":18.48,"retailPrice":26.39,"fRetailPrice":"$26.39","fWholesalePrice":"$18.48"}]},{"tierStem":"25","tierName":"Tier 25","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":17.50,"retailPrice":24.99,"fRetailPrice":"$24.99","fWholesalePrice":"$17.50"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":24.49,"retailPrice":34.99,"fRetailPrice":"$34.99","fWholesalePrice":"$24.49"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":300.30,"retailPrice":429.00,"fRetailPrice":"$429.00","fWholesalePrice":"$300.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":24.81,"retailPrice":38.99,"fRetailPrice":"$38.99","fWholesalePrice":"$24.81"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":25.89,"retailPrice":36.99,"fRetailPrice":"$36.99","fWholesalePrice":"$25.89"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":2100.00,"retailPrice":3000.00000,"fRetailPrice":"¥3,000","fWholesalePrice":"¥2,100"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":111.83,"retailPrice":163.00,"fRetailPrice":"¥163.00","fWholesalePrice":"¥111.83"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":24.49,"retailPrice":34.98,"fRetailPrice":"S$ 34.98","fWholesalePrice":"S$ 24.49"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":138.60,"retailPrice":198.00,"fRetailPrice":"HK$ 198.00","fWholesalePrice":"HK$ 138.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":525.00,"retailPrice":750.00,"fRetailPrice":"NT$ 750","fWholesalePrice":"NT$ 525"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":251300.00,"retailPrice":359000.00,"fRetailPrice":"Rp 359ribu","fWholesalePrice":"Rp 251.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1085.00,"retailPrice":1550.00,"fRetailPrice":"Rs 1,550","fWholesalePrice":"Rs 1,085"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1323.00,"retailPrice":1890.00,"fRetailPrice":"1 890 р.","fWholesalePrice":"1 323 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":45.49,"retailPrice":64.99,"fRetailPrice":"64,99 TL","fWholesalePrice":"45,49 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":69.93,"retailPrice":99.90,"fRetailPrice":"NIS 99.90","fWholesalePrice":"NIS 69.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":294.73,"retailPrice":479.99,"fRetailPrice":"R479.99","fWholesalePrice":"R294.73"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":62.99,"retailPrice":89.99,"fRetailPrice":"SR 89.99","fWholesalePrice":"SR 62.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":62.99,"retailPrice":89.99,"fRetailPrice":"AED 89.99","fWholesalePrice":"AED 62.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":11.08,"retailPrice":18.99,"fRetailPrice":"£18.99","fWholesalePrice":"£11.08"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":109.20,"retailPrice":195.00,"fRetailPrice":"195,00 kr","fWholesalePrice":"109,20 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":145.04,"retailPrice":259.00,"fRetailPrice":"259,00 kr","fWholesalePrice":"145,04 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":16.20,"retailPrice":25.00,"fRetailPrice":"CHF 25.00","fWholesalePrice":"CHF 16.20"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":150.64,"retailPrice":269.00,"fRetailPrice":"269,00 kr","fWholesalePrice":"150,64 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.95,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,95 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.82,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,82 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.70,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,70 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.70,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,70 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.58,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,58 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.58,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,58 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.58,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,58 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.58,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,58 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.58,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,58 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.46,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,46 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.46,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,46 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.46,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,46 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.46,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,46 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.46,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,46 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.46,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,46 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.34,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,34 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.34,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,34 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.22,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,22 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.22,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,22 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.22,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,22 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.22,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,22 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.11,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,11 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.58,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"14,58 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":13.77,"retailPrice":24.99,"fRetailPrice":"24,99 €","fWholesalePrice":"13,77 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":19.25,"retailPrice":27.49,"fRetailPrice":"$27.49","fWholesalePrice":"$19.25"}]},{"tierStem":"26","tierName":"Tier 26","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":18.20,"retailPrice":25.99,"fRetailPrice":"$25.99","fWholesalePrice":"$18.20"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":25.19,"retailPrice":35.99,"fRetailPrice":"$35.99","fWholesalePrice":"$25.19"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":314.30,"retailPrice":449.00,"fRetailPrice":"$449.00","fWholesalePrice":"$314.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":25.45,"retailPrice":39.99,"fRetailPrice":"$39.99","fWholesalePrice":"$25.45"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":27.29,"retailPrice":38.99,"fRetailPrice":"$38.99","fWholesalePrice":"$27.29"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":2170.00,"retailPrice":3100.00000,"fRetailPrice":"¥3,100","fWholesalePrice":"¥2,170"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":115.26,"retailPrice":168.00,"fRetailPrice":"¥168.00","fWholesalePrice":"¥115.26"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":25.89,"retailPrice":36.98,"fRetailPrice":"S$ 36.98","fWholesalePrice":"S$ 25.89"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":142.10,"retailPrice":203.00,"fRetailPrice":"HK$ 203.00","fWholesalePrice":"HK$ 142.10"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":553.00,"retailPrice":790.00,"fRetailPrice":"NT$ 790","fWholesalePrice":"NT$ 553"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":265300.00,"retailPrice":379000.00,"fRetailPrice":"Rp 379ribu","fWholesalePrice":"Rp 265.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1120.00,"retailPrice":1600.00,"fRetailPrice":"Rs 1,600","fWholesalePrice":"Rs 1,120"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1393.00,"retailPrice":1990.00,"fRetailPrice":"1 990 р.","fWholesalePrice":"1 393 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":47.59,"retailPrice":67.99,"fRetailPrice":"67,99 TL","fWholesalePrice":"47,59 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":72.73,"retailPrice":103.90,"fRetailPrice":"NIS 103.90","fWholesalePrice":"NIS 72.73"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":307.01,"retailPrice":499.99,"fRetailPrice":"R499.99","fWholesalePrice":"R307.01"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":66.49,"retailPrice":94.99,"fRetailPrice":"SR 94.99","fWholesalePrice":"SR 66.49"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":66.49,"retailPrice":94.99,"fRetailPrice":"AED 94.99","fWholesalePrice":"AED 66.49"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":11.37,"retailPrice":19.49,"fRetailPrice":"£19.49","fWholesalePrice":"£11.37"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":111.44,"retailPrice":199.00,"fRetailPrice":"199,00 kr","fWholesalePrice":"111,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":150.64,"retailPrice":269.00,"fRetailPrice":"269,00 kr","fWholesalePrice":"150,64 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":16.85,"retailPrice":26.00,"fRetailPrice":"CHF 26.00","fWholesalePrice":"CHF 16.85"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":156.24,"retailPrice":279.00,"fRetailPrice":"279,00 kr","fWholesalePrice":"156,24 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.55,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"15,55 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.42,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"15,42 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.29,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"15,29 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.29,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"15,29 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.16,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"15,16 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.16,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"15,16 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.16,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"15,16 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.16,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"15,16 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.16,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"15,16 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.04,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"15,04 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.04,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"15,04 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.04,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"15,04 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.04,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"15,04 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.04,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"15,04 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.04,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"15,04 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.91,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"14,91 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.91,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"14,91 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.79,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"14,79 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.79,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"14,79 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.79,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"14,79 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.79,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"14,79 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.67,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"14,67 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.16,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"15,16 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.33,"retailPrice":25.99,"fRetailPrice":"25,99 €","fWholesalePrice":"14,33 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":20.02,"retailPrice":28.59,"fRetailPrice":"$28.59","fWholesalePrice":"$20.02"}]},{"tierStem":"27","tierName":"Tier 27","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":18.90,"retailPrice":26.99,"fRetailPrice":"$26.99","fWholesalePrice":"$18.90"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":25.89,"retailPrice":36.99,"fRetailPrice":"$36.99","fWholesalePrice":"$25.89"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":328.30,"retailPrice":469.00,"fRetailPrice":"$469.00","fWholesalePrice":"$328.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":26.72,"retailPrice":41.99,"fRetailPrice":"$41.99","fWholesalePrice":"$26.72"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":27.99,"retailPrice":39.99,"fRetailPrice":"$39.99","fWholesalePrice":"$27.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":2240.00,"retailPrice":3200.00000,"fRetailPrice":"¥3,200","fWholesalePrice":"¥2,240"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":122.12,"retailPrice":178.00,"fRetailPrice":"¥178.00","fWholesalePrice":"¥122.12"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":27.29,"retailPrice":38.98,"fRetailPrice":"S$ 38.98","fWholesalePrice":"S$ 27.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":145.60,"retailPrice":208.00,"fRetailPrice":"HK$ 208.00","fWholesalePrice":"HK$ 145.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":574.00,"retailPrice":820.00,"fRetailPrice":"NT$ 820","fWholesalePrice":"NT$ 574"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":272300.00,"retailPrice":389000.00,"fRetailPrice":"Rp 389ribu","fWholesalePrice":"Rp 272.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1155.00,"retailPrice":1650.00,"fRetailPrice":"Rs 1,650","fWholesalePrice":"Rs 1,155"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1435.00,"retailPrice":2050.00,"fRetailPrice":"2 050 р.","fWholesalePrice":"1 435 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":48.99,"retailPrice":69.99,"fRetailPrice":"69,99 TL","fWholesalePrice":"48,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":75.53,"retailPrice":107.90,"fRetailPrice":"NIS 107.90","fWholesalePrice":"NIS 75.53"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":319.29,"retailPrice":519.99,"fRetailPrice":"R519.99","fWholesalePrice":"R319.29"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":69.99,"retailPrice":99.99,"fRetailPrice":"SR 99.99","fWholesalePrice":"SR 69.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":69.99,"retailPrice":99.99,"fRetailPrice":"AED 99.99","fWholesalePrice":"AED 69.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":11.66,"retailPrice":19.99,"fRetailPrice":"£19.99","fWholesalePrice":"£11.66"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":117.04,"retailPrice":209.00,"fRetailPrice":"209,00 kr","fWholesalePrice":"117,04 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":156.24,"retailPrice":279.00,"fRetailPrice":"279,00 kr","fWholesalePrice":"156,24 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":17.50,"retailPrice":27.00,"fRetailPrice":"CHF 27.00","fWholesalePrice":"CHF 17.50"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":161.84,"retailPrice":289.00,"fRetailPrice":"289,00 kr","fWholesalePrice":"161,84 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.15,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"16,15 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.01,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"16,01 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.88,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,88 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.88,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,88 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.74,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,74 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.74,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,74 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.74,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,74 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.74,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,74 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.74,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,74 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.61,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,61 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.61,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,61 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.61,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,61 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.61,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,61 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.61,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,61 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.61,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,61 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.49,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,49 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.49,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,49 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.36,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,36 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.36,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,36 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.36,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,36 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.36,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,36 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.24,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,24 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.74,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"15,74 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":14.88,"retailPrice":26.99,"fRetailPrice":"26,99 €","fWholesalePrice":"14,88 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":20.79,"retailPrice":29.69,"fRetailPrice":"$29.69","fWholesalePrice":"$20.79"}]},{"tierStem":"28","tierName":"Tier 28","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":19.60,"retailPrice":27.99,"fRetailPrice":"$27.99","fWholesalePrice":"$19.60"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":26.59,"retailPrice":37.99,"fRetailPrice":"$37.99","fWholesalePrice":"$26.59"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":335.30,"retailPrice":479.00,"fRetailPrice":"$479.00","fWholesalePrice":"$335.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":27.36,"retailPrice":42.99,"fRetailPrice":"$42.99","fWholesalePrice":"$27.36"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":29.39,"retailPrice":41.99,"fRetailPrice":"$41.99","fWholesalePrice":"$29.39"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":2380.00,"retailPrice":3400.00000,"fRetailPrice":"¥3,400","fWholesalePrice":"¥2,380"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":128.98,"retailPrice":188.00,"fRetailPrice":"¥188.00","fWholesalePrice":"¥128.98"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":28.69,"retailPrice":40.98,"fRetailPrice":"S$ 40.98","fWholesalePrice":"S$ 28.69"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":152.60,"retailPrice":218.00,"fRetailPrice":"HK$ 218.00","fWholesalePrice":"HK$ 152.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":588.00,"retailPrice":840.00,"fRetailPrice":"NT$ 840","fWholesalePrice":"NT$ 588"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":286300.00,"retailPrice":409000.00,"fRetailPrice":"Rp 409ribu","fWholesalePrice":"Rp 286.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1190.00,"retailPrice":1700.00,"fRetailPrice":"Rs 1,700","fWholesalePrice":"Rs 1,190"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1463.00,"retailPrice":2090.00,"fRetailPrice":"2 090 р.","fWholesalePrice":"1 463 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":52.49,"retailPrice":74.99,"fRetailPrice":"74,99 TL","fWholesalePrice":"52,49 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":78.33,"retailPrice":111.90,"fRetailPrice":"NIS 111.90","fWholesalePrice":"NIS 78.33"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":331.57,"retailPrice":539.99,"fRetailPrice":"R539.99","fWholesalePrice":"R331.57"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":73.49,"retailPrice":104.99,"fRetailPrice":"SR 104.99","fWholesalePrice":"SR 73.49"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":73.49,"retailPrice":104.99,"fRetailPrice":"AED 104.99","fWholesalePrice":"AED 73.49"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":12.24,"retailPrice":20.99,"fRetailPrice":"£20.99","fWholesalePrice":"£12.24"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":122.64,"retailPrice":219.00,"fRetailPrice":"219,00 kr","fWholesalePrice":"122,64 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":161.84,"retailPrice":289.00,"fRetailPrice":"289,00 kr","fWholesalePrice":"161,84 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":18.15,"retailPrice":28.00,"fRetailPrice":"CHF 28.00","fWholesalePrice":"CHF 18.15"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":167.44,"retailPrice":299.00,"fRetailPrice":"299,00 kr","fWholesalePrice":"167,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.75,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"16,75 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.60,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"16,60 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.46,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"16,46 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.46,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"16,46 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.33,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"16,33 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.33,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"16,33 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.33,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"16,33 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.33,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"16,33 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.33,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"16,33 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.19,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"16,19 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.19,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"16,19 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.19,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"16,19 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.19,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"16,19 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.19,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"16,19 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.19,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"16,19 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.06,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"16,06 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.06,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"16,06 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.93,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"15,93 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.93,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"15,93 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.93,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"15,93 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.93,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"15,93 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.80,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"15,80 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.33,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"16,33 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.43,"retailPrice":27.99,"fRetailPrice":"27,99 €","fWholesalePrice":"15,43 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":21.56,"retailPrice":30.79,"fRetailPrice":"$30.79","fWholesalePrice":"$21.56"}]},{"tierStem":"29","tierName":"Tier 29","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":20.30,"retailPrice":28.99,"fRetailPrice":"$28.99","fWholesalePrice":"$20.30"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":27.29,"retailPrice":38.99,"fRetailPrice":"$38.99","fWholesalePrice":"$27.29"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":342.30,"retailPrice":489.00,"fRetailPrice":"$489.00","fWholesalePrice":"$342.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":28.63,"retailPrice":44.99,"fRetailPrice":"$44.99","fWholesalePrice":"$28.63"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":30.09,"retailPrice":42.99,"fRetailPrice":"$42.99","fWholesalePrice":"$30.09"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":2450.00,"retailPrice":3500.00000,"fRetailPrice":"¥3,500","fWholesalePrice":"¥2,450"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":132.41,"retailPrice":193.00,"fRetailPrice":"¥193.00","fWholesalePrice":"¥132.41"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":30.09,"retailPrice":42.98,"fRetailPrice":"S$ 42.98","fWholesalePrice":"S$ 30.09"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":159.60,"retailPrice":228.00,"fRetailPrice":"HK$ 228.00","fWholesalePrice":"HK$ 159.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":609.00,"retailPrice":870.00,"fRetailPrice":"NT$ 870","fWholesalePrice":"NT$ 609"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":293300.00,"retailPrice":419000.00,"fRetailPrice":"Rp 419ribu","fWholesalePrice":"Rp 293.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1260.00,"retailPrice":1800.00,"fRetailPrice":"Rs 1,800","fWholesalePrice":"Rs 1,260"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1533.00,"retailPrice":2190.00,"fRetailPrice":"2 190 р.","fWholesalePrice":"1 533 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":54.59,"retailPrice":77.99,"fRetailPrice":"77,99 TL","fWholesalePrice":"54,59 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":81.13,"retailPrice":115.90,"fRetailPrice":"NIS 115.90","fWholesalePrice":"NIS 81.13"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":343.85,"retailPrice":559.99,"fRetailPrice":"R559.99","fWholesalePrice":"R343.85"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":75.59,"retailPrice":107.99,"fRetailPrice":"SR 107.99","fWholesalePrice":"SR 75.59"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":75.59,"retailPrice":107.99,"fRetailPrice":"AED 107.99","fWholesalePrice":"AED 75.59"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":12.83,"retailPrice":21.99,"fRetailPrice":"£21.99","fWholesalePrice":"£12.83"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":128.24,"retailPrice":229.00,"fRetailPrice":"229,00 kr","fWholesalePrice":"128,24 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":167.44,"retailPrice":299.00,"fRetailPrice":"299,00 kr","fWholesalePrice":"167,44 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":18.47,"retailPrice":28.50,"fRetailPrice":"CHF 28.50","fWholesalePrice":"CHF 18.47"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":173.04,"retailPrice":309.00,"fRetailPrice":"309,00 kr","fWholesalePrice":"173,04 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.34,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"17,34 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.20,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"17,20 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.05,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"17,05 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.05,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"17,05 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.91,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,91 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.91,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,91 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.91,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,91 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.91,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,91 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.91,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,91 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.77,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,77 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.77,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,77 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.77,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,77 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.77,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,77 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.77,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,77 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.77,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,77 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.63,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,63 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.63,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,63 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.50,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,50 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.50,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,50 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.50,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,50 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.50,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,50 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.37,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,37 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.91,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"16,91 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":15.98,"retailPrice":28.99,"fRetailPrice":"28,99 €","fWholesalePrice":"15,98 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":22.33,"retailPrice":31.89,"fRetailPrice":"$31.89","fWholesalePrice":"$22.33"}]},{"tierStem":"30","tierName":"Tier 30","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":21.00,"retailPrice":29.99,"fRetailPrice":"$29.99","fWholesalePrice":"$21.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":27.99,"retailPrice":39.99,"fRetailPrice":"$39.99","fWholesalePrice":"$27.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":349.30,"retailPrice":499.00,"fRetailPrice":"$499.00","fWholesalePrice":"$349.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":29.90,"retailPrice":46.99,"fRetailPrice":"$46.99","fWholesalePrice":"$29.90"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":31.49,"retailPrice":44.99,"fRetailPrice":"$44.99","fWholesalePrice":"$31.49"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":2520.00,"retailPrice":3600.00000,"fRetailPrice":"¥3,600","fWholesalePrice":"¥2,520"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":135.84,"retailPrice":198.00,"fRetailPrice":"¥198.00","fWholesalePrice":"¥135.84"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":31.49,"retailPrice":44.98,"fRetailPrice":"S$ 44.98","fWholesalePrice":"S$ 31.49"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":166.60,"retailPrice":238.00,"fRetailPrice":"HK$ 238.00","fWholesalePrice":"HK$ 166.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":623.00,"retailPrice":890.00,"fRetailPrice":"NT$ 890","fWholesalePrice":"NT$ 623"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":307300.00,"retailPrice":439000.00,"fRetailPrice":"Rp 439ribu","fWholesalePrice":"Rp 307.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1295.00,"retailPrice":1850.00,"fRetailPrice":"Rs 1,850","fWholesalePrice":"Rs 1,295"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1603.00,"retailPrice":2290.00,"fRetailPrice":"2 290 р.","fWholesalePrice":"1 603 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":55.99,"retailPrice":79.99,"fRetailPrice":"79,99 TL","fWholesalePrice":"55,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":83.93,"retailPrice":119.90,"fRetailPrice":"NIS 119.90","fWholesalePrice":"NIS 83.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":356.13,"retailPrice":579.99,"fRetailPrice":"R579.99","fWholesalePrice":"R356.13"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":76.99,"retailPrice":109.99,"fRetailPrice":"SR 109.99","fWholesalePrice":"SR 76.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":76.99,"retailPrice":109.99,"fRetailPrice":"AED 109.99","fWholesalePrice":"AED 76.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":13.41,"retailPrice":22.99,"fRetailPrice":"£22.99","fWholesalePrice":"£13.41"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":131.60,"retailPrice":235.00,"fRetailPrice":"235,00 kr","fWholesalePrice":"131,60 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":178.64,"retailPrice":319.00,"fRetailPrice":"319,00 kr","fWholesalePrice":"178,64 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":18.80,"retailPrice":29.00,"fRetailPrice":"CHF 29.00","fWholesalePrice":"CHF 18.80"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":184.24,"retailPrice":329.00,"fRetailPrice":"329,00 kr","fWholesalePrice":"184,24 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.94,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,94 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.79,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,79 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.64,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,64 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.64,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,64 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.49,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,49 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.49,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,49 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.49,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,49 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.49,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,49 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.49,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,49 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.35,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,35 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.35,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,35 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.35,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,35 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.35,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,35 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.35,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,35 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.35,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,35 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.21,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,21 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.21,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,21 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.07,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,07 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.07,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,07 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.07,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,07 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.07,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,07 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.93,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"16,93 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.49,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"17,49 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":16.53,"retailPrice":29.99,"fRetailPrice":"29,99 €","fWholesalePrice":"16,53 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":23.10,"retailPrice":32.99,"fRetailPrice":"$32.99","fWholesalePrice":"$23.10"}]},{"tierStem":"31","tierName":"Tier 31","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":21.70,"retailPrice":30.99,"fRetailPrice":"$30.99","fWholesalePrice":"$21.70"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":29.39,"retailPrice":41.99,"fRetailPrice":"$41.99","fWholesalePrice":"$29.39"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":370.30,"retailPrice":529.00,"fRetailPrice":"$529.00","fWholesalePrice":"$370.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":30.54,"retailPrice":47.99,"fRetailPrice":"$47.99","fWholesalePrice":"$30.54"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":32.19,"retailPrice":45.99,"fRetailPrice":"$45.99","fWholesalePrice":"$32.19"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":2590.00,"retailPrice":3700.00000,"fRetailPrice":"¥3,700","fWholesalePrice":"¥2,590"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":142.70,"retailPrice":208.00,"fRetailPrice":"¥208.00","fWholesalePrice":"¥142.70"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":32.19,"retailPrice":45.98,"fRetailPrice":"S$ 45.98","fWholesalePrice":"S$ 32.19"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":170.10,"retailPrice":243.00,"fRetailPrice":"HK$ 243.00","fWholesalePrice":"HK$ 170.10"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":651.00,"retailPrice":930.00,"fRetailPrice":"NT$ 930","fWholesalePrice":"NT$ 651"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":314300.00,"retailPrice":449000.00,"fRetailPrice":"Rp 449ribu","fWholesalePrice":"Rp 314.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1330.00,"retailPrice":1900.00,"fRetailPrice":"Rs 1,900","fWholesalePrice":"Rs 1,330"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1645.00,"retailPrice":2350.00,"fRetailPrice":"2 350 р.","fWholesalePrice":"1 645 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":58.09,"retailPrice":82.99,"fRetailPrice":"82,99 TL","fWholesalePrice":"58,09 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":86.73,"retailPrice":123.90,"fRetailPrice":"NIS 123.90","fWholesalePrice":"NIS 86.73"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":368.41,"retailPrice":599.99,"fRetailPrice":"R599.99","fWholesalePrice":"R368.41"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":80.49,"retailPrice":114.99,"fRetailPrice":"SR 114.99","fWholesalePrice":"SR 80.49"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":80.49,"retailPrice":114.99,"fRetailPrice":"AED 114.99","fWholesalePrice":"AED 80.49"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":13.70,"retailPrice":23.49,"fRetailPrice":"£23.49","fWholesalePrice":"£13.70"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":133.84,"retailPrice":239.00,"fRetailPrice":"239,00 kr","fWholesalePrice":"133,84 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":184.24,"retailPrice":329.00,"fRetailPrice":"329,00 kr","fWholesalePrice":"184,24 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":19.44,"retailPrice":30.00,"fRetailPrice":"CHF 30.00","fWholesalePrice":"CHF 19.44"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":189.84,"retailPrice":339.00,"fRetailPrice":"339,00 kr","fWholesalePrice":"189,84 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.54,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"18,54 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.38,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"18,38 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.23,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"18,23 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.23,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"18,23 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.08,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"18,08 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.08,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"18,08 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.08,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"18,08 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.08,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"18,08 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.08,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"18,08 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.93,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"17,93 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.93,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"17,93 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.93,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"17,93 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.93,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"17,93 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.93,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"17,93 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.93,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"17,93 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.78,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"17,78 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.78,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"17,78 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.64,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"17,64 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.64,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"17,64 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.64,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"17,64 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.64,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"17,64 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.49,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"17,49 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.08,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"18,08 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.08,"retailPrice":30.99,"fRetailPrice":"30,99 €","fWholesalePrice":"17,08 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":23.87,"retailPrice":34.09,"fRetailPrice":"$34.09","fWholesalePrice":"$23.87"}]},{"tierStem":"32","tierName":"Tier 32","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":22.40,"retailPrice":31.99,"fRetailPrice":"$31.99","fWholesalePrice":"$22.40"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":30.79,"retailPrice":43.99,"fRetailPrice":"$43.99","fWholesalePrice":"$30.79"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":384.30,"retailPrice":549.00,"fRetailPrice":"$549.00","fWholesalePrice":"$384.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":31.81,"retailPrice":49.99,"fRetailPrice":"$49.99","fWholesalePrice":"$31.81"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":33.59,"retailPrice":47.99,"fRetailPrice":"$47.99","fWholesalePrice":"$33.59"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":2660.00,"retailPrice":3800.00000,"fRetailPrice":"¥3,800","fWholesalePrice":"¥2,660"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":149.56,"retailPrice":218.00,"fRetailPrice":"¥218.00","fWholesalePrice":"¥149.56"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":32.89,"retailPrice":46.98,"fRetailPrice":"S$ 46.98","fWholesalePrice":"S$ 32.89"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":173.60,"retailPrice":248.00,"fRetailPrice":"HK$ 248.00","fWholesalePrice":"HK$ 173.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":672.00,"retailPrice":960.00,"fRetailPrice":"NT$ 960","fWholesalePrice":"NT$ 672"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":328300.00,"retailPrice":469000.00,"fRetailPrice":"Rp 469ribu","fWholesalePrice":"Rp 328.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1400.00,"retailPrice":2000.00,"fRetailPrice":"Rs 2,000","fWholesalePrice":"Rs 1,400"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1673.00,"retailPrice":2390.00,"fRetailPrice":"2 390 р.","fWholesalePrice":"1 673 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":59.49,"retailPrice":84.99,"fRetailPrice":"84,99 TL","fWholesalePrice":"59,49 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":89.53,"retailPrice":127.90,"fRetailPrice":"NIS 127.90","fWholesalePrice":"NIS 89.53"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":380.70,"retailPrice":619.99,"fRetailPrice":"R619.99","fWholesalePrice":"R380.70"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":82.59,"retailPrice":117.99,"fRetailPrice":"SR 117.99","fWholesalePrice":"SR 82.59"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":82.59,"retailPrice":117.99,"fRetailPrice":"AED 117.99","fWholesalePrice":"AED 82.59"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":13.99,"retailPrice":23.99,"fRetailPrice":"£23.99","fWholesalePrice":"£13.99"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":139.44,"retailPrice":249.00,"fRetailPrice":"249,00 kr","fWholesalePrice":"139,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":189.84,"retailPrice":339.00,"fRetailPrice":"339,00 kr","fWholesalePrice":"189,84 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":20.09,"retailPrice":31.00,"fRetailPrice":"CHF 31.00","fWholesalePrice":"CHF 20.09"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":195.44,"retailPrice":349.00,"fRetailPrice":"349,00 kr","fWholesalePrice":"195,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.14,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"19,14 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.98,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,98 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.82,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,82 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.82,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,82 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.66,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,66 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.66,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,66 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.66,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,66 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.66,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,66 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.66,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,66 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.51,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,51 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.51,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,51 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.51,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,51 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.51,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,51 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.51,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,51 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.51,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,51 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.35,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,35 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.35,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,35 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.21,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,21 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.21,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,21 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.21,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,21 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.21,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,21 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.06,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,06 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.66,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"18,66 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":17.63,"retailPrice":31.99,"fRetailPrice":"31,99 €","fWholesalePrice":"17,63 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":24.64,"retailPrice":35.19,"fRetailPrice":"$35.19","fWholesalePrice":"$24.64"}]},{"tierStem":"33","tierName":"Tier 33","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":23.10,"retailPrice":32.99,"fRetailPrice":"$32.99","fWholesalePrice":"$23.10"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":31.49,"retailPrice":44.99,"fRetailPrice":"$44.99","fWholesalePrice":"$31.49"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":398.30,"retailPrice":569.00,"fRetailPrice":"$569.00","fWholesalePrice":"$398.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":33.08,"retailPrice":51.99,"fRetailPrice":"$51.99","fWholesalePrice":"$33.08"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":34.29,"retailPrice":48.99,"fRetailPrice":"$48.99","fWholesalePrice":"$34.29"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":2800.00,"retailPrice":4000.00000,"fRetailPrice":"¥4,000","fWholesalePrice":"¥2,800"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":152.99,"retailPrice":223.00,"fRetailPrice":"¥223.00","fWholesalePrice":"¥152.99"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":33.59,"retailPrice":47.98,"fRetailPrice":"S$ 47.98","fWholesalePrice":"S$ 33.59"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":180.60,"retailPrice":258.00,"fRetailPrice":"HK$ 258.00","fWholesalePrice":"HK$ 180.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":693.00,"retailPrice":990.00,"fRetailPrice":"NT$ 990","fWholesalePrice":"NT$ 693"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":335300.00,"retailPrice":479000.00,"fRetailPrice":"Rp 479ribu","fWholesalePrice":"Rp 335.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1435.00,"retailPrice":2050.00,"fRetailPrice":"Rs 2,050","fWholesalePrice":"Rs 1,435"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1743.00,"retailPrice":2490.00,"fRetailPrice":"2 490 р.","fWholesalePrice":"1 743 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":61.59,"retailPrice":87.99,"fRetailPrice":"87,99 TL","fWholesalePrice":"61,59 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":92.33,"retailPrice":131.90,"fRetailPrice":"NIS 131.90","fWholesalePrice":"NIS 92.33"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":392.98,"retailPrice":639.99,"fRetailPrice":"R639.99","fWholesalePrice":"R392.98"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":83.99,"retailPrice":119.99,"fRetailPrice":"SR 119.99","fWholesalePrice":"SR 83.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":83.99,"retailPrice":119.99,"fRetailPrice":"AED 119.99","fWholesalePrice":"AED 83.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":14.58,"retailPrice":24.99,"fRetailPrice":"£24.99","fWholesalePrice":"£14.58"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":145.04,"retailPrice":259.00,"fRetailPrice":"259,00 kr","fWholesalePrice":"145,04 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":195.44,"retailPrice":349.00,"fRetailPrice":"349,00 kr","fWholesalePrice":"195,44 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":20.74,"retailPrice":32.00,"fRetailPrice":"CHF 32.00","fWholesalePrice":"CHF 20.74"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":201.04,"retailPrice":359.00,"fRetailPrice":"359,00 kr","fWholesalePrice":"201,04 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.74,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"19,74 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.57,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"19,57 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.41,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"19,41 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.41,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"19,41 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.24,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"19,24 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.24,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"19,24 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.24,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"19,24 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.24,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"19,24 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.24,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"19,24 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.09,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"19,09 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.09,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"19,09 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.09,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"19,09 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.09,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"19,09 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.09,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"19,09 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.09,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"19,09 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.93,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"18,93 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.93,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"18,93 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.77,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"18,77 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.77,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"18,77 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.77,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"18,77 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.77,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"18,77 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.62,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"18,62 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.24,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"19,24 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.18,"retailPrice":32.99,"fRetailPrice":"32,99 €","fWholesalePrice":"18,18 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":25.41,"retailPrice":36.29,"fRetailPrice":"$36.29","fWholesalePrice":"$25.41"}]},{"tierStem":"34","tierName":"Tier 34","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":23.80,"retailPrice":33.99,"fRetailPrice":"$33.99","fWholesalePrice":"$23.80"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":32.89,"retailPrice":46.99,"fRetailPrice":"$46.99","fWholesalePrice":"$32.89"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":405.30,"retailPrice":579.00,"fRetailPrice":"$579.00","fWholesalePrice":"$405.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":33.72,"retailPrice":52.99,"fRetailPrice":"$52.99","fWholesalePrice":"$33.72"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":35.69,"retailPrice":50.99,"fRetailPrice":"$50.99","fWholesalePrice":"$35.69"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":2870.00,"retailPrice":4100.00000,"fRetailPrice":"¥4,100","fWholesalePrice":"¥2,870"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":156.42,"retailPrice":228.00,"fRetailPrice":"¥228.00","fWholesalePrice":"¥156.42"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":34.29,"retailPrice":48.98,"fRetailPrice":"S$ 48.98","fWholesalePrice":"S$ 34.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":187.60,"retailPrice":268.00,"fRetailPrice":"HK$ 268.00","fWholesalePrice":"HK$ 187.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":714.00,"retailPrice":1020.00,"fRetailPrice":"NT$ 1,020","fWholesalePrice":"NT$ 714"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":349300.00,"retailPrice":499000.00,"fRetailPrice":"Rp 499ribu","fWholesalePrice":"Rp 349.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1470.00,"retailPrice":2100.00,"fRetailPrice":"Rs 2,100","fWholesalePrice":"Rs 1,470"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1813.00,"retailPrice":2590.00,"fRetailPrice":"2 590 р.","fWholesalePrice":"1 813 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":62.99,"retailPrice":89.99,"fRetailPrice":"89,99 TL","fWholesalePrice":"62,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":95.13,"retailPrice":135.90,"fRetailPrice":"NIS 135.90","fWholesalePrice":"NIS 95.13"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":405.26,"retailPrice":659.99,"fRetailPrice":"R659.99","fWholesalePrice":"R405.26"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":87.49,"retailPrice":124.99,"fRetailPrice":"SR 124.99","fWholesalePrice":"SR 87.49"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":87.49,"retailPrice":124.99,"fRetailPrice":"AED 124.99","fWholesalePrice":"AED 87.49"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":14.87,"retailPrice":25.49,"fRetailPrice":"£25.49","fWholesalePrice":"£14.87"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":148.40,"retailPrice":265.00,"fRetailPrice":"265,00 kr","fWholesalePrice":"148,40 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":201.04,"retailPrice":359.00,"fRetailPrice":"359,00 kr","fWholesalePrice":"201,04 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":21.39,"retailPrice":33.00,"fRetailPrice":"CHF 33.00","fWholesalePrice":"CHF 21.39"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":206.64,"retailPrice":369.00,"fRetailPrice":"369,00 kr","fWholesalePrice":"206,64 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.34,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"20,34 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.16,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"20,16 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.99,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,99 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.99,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,99 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.83,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,83 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.83,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,83 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.83,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,83 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.83,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,83 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.83,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,83 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.66,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,66 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.66,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,66 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.66,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,66 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.66,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,66 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.66,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,66 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.66,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,66 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.50,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,50 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.50,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,50 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.34,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,34 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.34,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,34 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.34,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,34 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.34,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,34 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.19,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,19 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.83,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"19,83 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":18.73,"retailPrice":33.99,"fRetailPrice":"33,99 €","fWholesalePrice":"18,73 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":26.18,"retailPrice":37.39,"fRetailPrice":"$37.39","fWholesalePrice":"$26.18"}]},{"tierStem":"35","tierName":"Tier 35","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":24.50,"retailPrice":34.99,"fRetailPrice":"$34.99","fWholesalePrice":"$24.50"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":33.59,"retailPrice":47.99,"fRetailPrice":"$47.99","fWholesalePrice":"$33.59"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":419.30,"retailPrice":599.00,"fRetailPrice":"$599.00","fWholesalePrice":"$419.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":34.99,"retailPrice":54.99,"fRetailPrice":"$54.99","fWholesalePrice":"$34.99"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":36.39,"retailPrice":51.99,"fRetailPrice":"$51.99","fWholesalePrice":"$36.39"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":2940.00,"retailPrice":4200.00000,"fRetailPrice":"¥4,200","fWholesalePrice":"¥2,940"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":159.85,"retailPrice":233.00,"fRetailPrice":"¥233.00","fWholesalePrice":"¥159.85"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":34.99,"retailPrice":49.98,"fRetailPrice":"S$ 49.98","fWholesalePrice":"S$ 34.99"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":194.60,"retailPrice":278.00,"fRetailPrice":"HK$ 278.00","fWholesalePrice":"HK$ 194.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":735.00,"retailPrice":1050.00,"fRetailPrice":"NT$ 1,050","fWholesalePrice":"NT$ 735"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":356300.00,"retailPrice":509000.00,"fRetailPrice":"Rp 509ribu","fWholesalePrice":"Rp 356.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1505.00,"retailPrice":2150.00,"fRetailPrice":"Rs 2,150","fWholesalePrice":"Rs 1,505"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1855.00,"retailPrice":2650.00,"fRetailPrice":"2 650 р.","fWholesalePrice":"1 855 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":65.09,"retailPrice":92.99,"fRetailPrice":"92,99 TL","fWholesalePrice":"65,09 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":97.93,"retailPrice":139.90,"fRetailPrice":"NIS 139.90","fWholesalePrice":"NIS 97.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":417.54,"retailPrice":679.99,"fRetailPrice":"R679.99","fWholesalePrice":"R417.54"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":89.59,"retailPrice":127.99,"fRetailPrice":"SR 127.99","fWholesalePrice":"SR 89.59"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":89.59,"retailPrice":127.99,"fRetailPrice":"AED 127.99","fWholesalePrice":"AED 89.59"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":15.16,"retailPrice":25.99,"fRetailPrice":"£25.99","fWholesalePrice":"£15.16"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":150.64,"retailPrice":269.00,"fRetailPrice":"269,00 kr","fWholesalePrice":"150,64 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":206.64,"retailPrice":369.00,"fRetailPrice":"369,00 kr","fWholesalePrice":"206,64 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":22.04,"retailPrice":34.00,"fRetailPrice":"CHF 34.00","fWholesalePrice":"CHF 22.04"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":212.24,"retailPrice":379.00,"fRetailPrice":"379,00 kr","fWholesalePrice":"212,24 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.93,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"20,93 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.76,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"20,76 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.58,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"20,58 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.58,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"20,58 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.41,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"20,41 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.41,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"20,41 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.41,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"20,41 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.41,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"20,41 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.41,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"20,41 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.24,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"20,24 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.24,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"20,24 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.24,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"20,24 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.24,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"20,24 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.24,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"20,24 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.24,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"20,24 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.08,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"20,08 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.08,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"20,08 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.91,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"19,91 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.91,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"19,91 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.91,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"19,91 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.91,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"19,91 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.75,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"19,75 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.41,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"20,41 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.29,"retailPrice":34.99,"fRetailPrice":"34,99 €","fWholesalePrice":"19,29 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":26.95,"retailPrice":38.49,"fRetailPrice":"$38.49","fWholesalePrice":"$26.95"}]},{"tierStem":"36","tierName":"Tier 36","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":25.20,"retailPrice":35.99,"fRetailPrice":"$35.99","fWholesalePrice":"$25.20"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":34.99,"retailPrice":49.99,"fRetailPrice":"$49.99","fWholesalePrice":"$34.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":440.30,"retailPrice":629.00,"fRetailPrice":"$629.00","fWholesalePrice":"$440.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":35.63,"retailPrice":55.99,"fRetailPrice":"$55.99","fWholesalePrice":"$35.63"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":37.79,"retailPrice":53.99,"fRetailPrice":"$53.99","fWholesalePrice":"$37.79"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":3010.00,"retailPrice":4300.00000,"fRetailPrice":"¥4,300","fWholesalePrice":"¥3,010"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":163.29,"retailPrice":238.00,"fRetailPrice":"¥238.00","fWholesalePrice":"¥163.29"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":36.39,"retailPrice":51.98,"fRetailPrice":"S$ 51.98","fWholesalePrice":"S$ 36.39"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":198.10,"retailPrice":283.00,"fRetailPrice":"HK$ 283.00","fWholesalePrice":"HK$ 198.10"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":763.00,"retailPrice":1090.00,"fRetailPrice":"NT$ 1,090","fWholesalePrice":"NT$ 763"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":370300.00,"retailPrice":529000.00,"fRetailPrice":"Rp 529ribu","fWholesalePrice":"Rp 370.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1540.00,"retailPrice":2200.00,"fRetailPrice":"Rs 2,200","fWholesalePrice":"Rs 1,540"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1883.00,"retailPrice":2690.00,"fRetailPrice":"2 690 р.","fWholesalePrice":"1 883 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":66.49,"retailPrice":94.99,"fRetailPrice":"94,99 TL","fWholesalePrice":"66,49 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":100.73,"retailPrice":143.90,"fRetailPrice":"NIS 143.90","fWholesalePrice":"NIS 100.73"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":429.82,"retailPrice":699.99,"fRetailPrice":"R699.99","fWholesalePrice":"R429.82"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":90.99,"retailPrice":129.99,"fRetailPrice":"SR 129.99","fWholesalePrice":"SR 90.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":90.99,"retailPrice":129.99,"fRetailPrice":"AED 129.99","fWholesalePrice":"AED 90.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":15.74,"retailPrice":26.99,"fRetailPrice":"£26.99","fWholesalePrice":"£15.74"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":156.24,"retailPrice":279.00,"fRetailPrice":"279,00 kr","fWholesalePrice":"156,24 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":212.24,"retailPrice":379.00,"fRetailPrice":"379,00 kr","fWholesalePrice":"212,24 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":22.69,"retailPrice":35.00,"fRetailPrice":"CHF 35.00","fWholesalePrice":"CHF 22.69"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":217.84,"retailPrice":389.00,"fRetailPrice":"389,00 kr","fWholesalePrice":"217,84 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.53,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"21,53 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.35,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"21,35 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.17,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"21,17 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.17,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"21,17 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.99,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,99 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.99,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,99 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.99,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,99 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.99,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,99 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.99,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,99 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.82,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,82 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.82,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,82 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.82,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,82 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.82,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,82 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.82,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,82 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.82,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,82 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.65,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,65 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.65,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,65 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.48,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,48 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.48,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,48 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.48,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,48 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.48,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,48 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.32,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,32 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.99,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"20,99 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":19.84,"retailPrice":35.99,"fRetailPrice":"35,99 €","fWholesalePrice":"19,84 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":27.72,"retailPrice":39.59,"fRetailPrice":"$39.59","fWholesalePrice":"$27.72"}]},{"tierStem":"37","tierName":"Tier 37","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":25.90,"retailPrice":36.99,"fRetailPrice":"$36.99","fWholesalePrice":"$25.90"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":36.39,"retailPrice":51.99,"fRetailPrice":"$51.99","fWholesalePrice":"$36.39"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":447.30,"retailPrice":639.00,"fRetailPrice":"$639.00","fWholesalePrice":"$447.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":36.90,"retailPrice":57.99,"fRetailPrice":"$57.99","fWholesalePrice":"$36.90"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":38.49,"retailPrice":54.99,"fRetailPrice":"$54.99","fWholesalePrice":"$38.49"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":3150.00,"retailPrice":4500.00000,"fRetailPrice":"¥4,500","fWholesalePrice":"¥3,150"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":166.72,"retailPrice":243.00,"fRetailPrice":"¥243.00","fWholesalePrice":"¥166.72"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":37.79,"retailPrice":53.98,"fRetailPrice":"S$ 53.98","fWholesalePrice":"S$ 37.79"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":201.60,"retailPrice":288.00,"fRetailPrice":"HK$ 288.00","fWholesalePrice":"HK$ 201.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":784.00,"retailPrice":1120.00,"fRetailPrice":"NT$ 1,120","fWholesalePrice":"NT$ 784"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":377300.00,"retailPrice":539000.00,"fRetailPrice":"Rp 539ribu","fWholesalePrice":"Rp 377.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1610.00,"retailPrice":2300.00,"fRetailPrice":"Rs 2,300","fWholesalePrice":"Rs 1,610"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":1953.00,"retailPrice":2790.00,"fRetailPrice":"2 790 р.","fWholesalePrice":"1 953 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":68.59,"retailPrice":97.99,"fRetailPrice":"97,99 TL","fWholesalePrice":"68,59 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":103.53,"retailPrice":147.90,"fRetailPrice":"NIS 147.90","fWholesalePrice":"NIS 103.53"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":442.10,"retailPrice":719.99,"fRetailPrice":"R719.99","fWholesalePrice":"R442.10"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":94.49,"retailPrice":134.99,"fRetailPrice":"SR 134.99","fWholesalePrice":"SR 94.49"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":94.49,"retailPrice":134.99,"fRetailPrice":"AED 134.99","fWholesalePrice":"AED 94.49"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":16.33,"retailPrice":27.99,"fRetailPrice":"£27.99","fWholesalePrice":"£16.33"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":161.84,"retailPrice":289.00,"fRetailPrice":"289,00 kr","fWholesalePrice":"161,84 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":217.84,"retailPrice":389.00,"fRetailPrice":"389,00 kr","fWholesalePrice":"217,84 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":23.33,"retailPrice":36.00,"fRetailPrice":"CHF 36.00","fWholesalePrice":"CHF 23.33"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":223.44,"retailPrice":399.00,"fRetailPrice":"399,00 kr","fWholesalePrice":"223,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.13,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"22,13 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.94,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,94 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.76,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,76 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.76,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,76 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.58,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,58 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.58,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,58 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.58,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,58 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.58,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,58 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.58,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,58 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.40,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,40 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.40,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,40 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.40,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,40 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.40,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,40 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.40,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,40 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.40,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,40 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.22,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,22 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.22,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,22 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.05,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,05 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.05,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,05 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.05,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,05 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.05,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,05 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.88,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"20,88 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.58,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"21,58 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.39,"retailPrice":36.99,"fRetailPrice":"36,99 €","fWholesalePrice":"20,39 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":28.49,"retailPrice":40.69,"fRetailPrice":"$40.69","fWholesalePrice":"$28.49"}]},{"tierStem":"38","tierName":"Tier 38","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":26.60,"retailPrice":37.99,"fRetailPrice":"$37.99","fWholesalePrice":"$26.60"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":37.09,"retailPrice":52.99,"fRetailPrice":"$52.99","fWholesalePrice":"$37.09"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":454.30,"retailPrice":649.00,"fRetailPrice":"$649.00","fWholesalePrice":"$454.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":38.18,"retailPrice":59.99,"fRetailPrice":"$59.99","fWholesalePrice":"$38.18"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":39.89,"retailPrice":56.99,"fRetailPrice":"$56.99","fWholesalePrice":"$39.89"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":3220.00,"retailPrice":4600.00000,"fRetailPrice":"¥4,600","fWholesalePrice":"¥3,220"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":170.15,"retailPrice":248.00,"fRetailPrice":"¥248.00","fWholesalePrice":"¥170.15"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":39.19,"retailPrice":55.98,"fRetailPrice":"S$ 55.98","fWholesalePrice":"S$ 39.19"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":208.60,"retailPrice":298.00,"fRetailPrice":"HK$ 298.00","fWholesalePrice":"HK$ 208.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":798.00,"retailPrice":1140.00,"fRetailPrice":"NT$ 1,140","fWholesalePrice":"NT$ 798"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":391300.00,"retailPrice":559000.00,"fRetailPrice":"Rp 559ribu","fWholesalePrice":"Rp 391.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1645.00,"retailPrice":2350.00,"fRetailPrice":"Rs 2,350","fWholesalePrice":"Rs 1,645"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":2023.00,"retailPrice":2890.00,"fRetailPrice":"2 890 р.","fWholesalePrice":"2 023 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":69.99,"retailPrice":99.99,"fRetailPrice":"99,99 TL","fWholesalePrice":"69,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":106.33,"retailPrice":151.90,"fRetailPrice":"NIS 151.90","fWholesalePrice":"NIS 106.33"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":448.24,"retailPrice":729.99,"fRetailPrice":"R729.99","fWholesalePrice":"R448.24"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":97.99,"retailPrice":139.99,"fRetailPrice":"SR 139.99","fWholesalePrice":"SR 97.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":97.99,"retailPrice":139.99,"fRetailPrice":"AED 139.99","fWholesalePrice":"AED 97.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":16.62,"retailPrice":28.49,"fRetailPrice":"£28.49","fWholesalePrice":"£16.62"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":165.20,"retailPrice":295.00,"fRetailPrice":"295,00 kr","fWholesalePrice":"165,20 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":223.44,"retailPrice":399.00,"fRetailPrice":"399,00 kr","fWholesalePrice":"223,44 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":23.98,"retailPrice":37.00,"fRetailPrice":"CHF 37.00","fWholesalePrice":"CHF 23.98"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":229.04,"retailPrice":409.00,"fRetailPrice":"409,00 kr","fWholesalePrice":"229,04 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.73,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"22,73 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.54,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"22,54 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.35,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"22,35 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.35,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"22,35 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.16,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"22,16 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.16,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"22,16 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.16,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"22,16 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.16,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"22,16 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.16,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"22,16 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.98,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"21,98 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.98,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"21,98 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.98,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"21,98 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.98,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"21,98 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.98,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"21,98 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.98,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"21,98 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.80,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"21,80 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.80,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"21,80 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.62,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"21,62 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.62,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"21,62 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.62,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"21,62 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.62,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"21,62 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.45,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"21,45 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.16,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"22,16 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":20.94,"retailPrice":37.99,"fRetailPrice":"37,99 €","fWholesalePrice":"20,94 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":29.26,"retailPrice":41.79,"fRetailPrice":"$41.79","fWholesalePrice":"$29.26"}]},{"tierStem":"39","tierName":"Tier 39","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":27.30,"retailPrice":38.99,"fRetailPrice":"$38.99","fWholesalePrice":"$27.30"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":37.79,"retailPrice":53.99,"fRetailPrice":"$53.99","fWholesalePrice":"$37.79"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":475.30,"retailPrice":679.00,"fRetailPrice":"$679.00","fWholesalePrice":"$475.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":38.81,"retailPrice":60.99,"fRetailPrice":"$60.99","fWholesalePrice":"$38.81"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":40.59,"retailPrice":57.99,"fRetailPrice":"$57.99","fWholesalePrice":"$40.59"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":3290.00,"retailPrice":4700.00000,"fRetailPrice":"¥4,700","fWholesalePrice":"¥3,290"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":173.58,"retailPrice":253.00,"fRetailPrice":"¥253.00","fWholesalePrice":"¥173.58"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":40.59,"retailPrice":57.98,"fRetailPrice":"S$ 57.98","fWholesalePrice":"S$ 40.59"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":215.60,"retailPrice":308.00,"fRetailPrice":"HK$ 308.00","fWholesalePrice":"HK$ 215.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":819.00,"retailPrice":1170.00,"fRetailPrice":"NT$ 1,170","fWholesalePrice":"NT$ 819"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":398300.00,"retailPrice":569000.00,"fRetailPrice":"Rp 569ribu","fWholesalePrice":"Rp 398.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1680.00,"retailPrice":2400.00,"fRetailPrice":"Rs 2,400","fWholesalePrice":"Rs 1,680"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":2065.00,"retailPrice":2950.00,"fRetailPrice":"2 950 р.","fWholesalePrice":"2 065 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":72.09,"retailPrice":102.99,"fRetailPrice":"102,99 TL","fWholesalePrice":"72,09 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":109.13,"retailPrice":155.90,"fRetailPrice":"NIS 155.90","fWholesalePrice":"NIS 109.13"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":460.52,"retailPrice":749.99,"fRetailPrice":"R749.99","fWholesalePrice":"R460.52"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":101.49,"retailPrice":144.99,"fRetailPrice":"SR 144.99","fWholesalePrice":"SR 101.49"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":101.49,"retailPrice":144.99,"fRetailPrice":"AED 144.99","fWholesalePrice":"AED 101.49"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":16.91,"retailPrice":28.99,"fRetailPrice":"£28.99","fWholesalePrice":"£16.91"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":167.44,"retailPrice":299.00,"fRetailPrice":"299,00 kr","fWholesalePrice":"167,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":229.04,"retailPrice":409.00,"fRetailPrice":"409,00 kr","fWholesalePrice":"229,04 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":24.63,"retailPrice":38.00,"fRetailPrice":"CHF 38.00","fWholesalePrice":"CHF 24.63"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":234.64,"retailPrice":419.00,"fRetailPrice":"419,00 kr","fWholesalePrice":"234,64 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.33,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"23,33 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.13,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"23,13 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.94,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,94 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.94,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,94 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.74,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,74 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.74,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,74 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.74,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,74 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.74,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,74 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.74,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,74 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.56,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,56 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.56,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,56 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.56,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,56 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.56,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,56 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.56,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,56 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.56,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,56 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.37,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,37 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.37,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,37 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.19,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,19 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.19,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,19 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.19,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,19 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.19,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,19 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.01,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,01 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.74,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"22,74 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":21.49,"retailPrice":38.99,"fRetailPrice":"38,99 €","fWholesalePrice":"21,49 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":30.03,"retailPrice":42.89,"fRetailPrice":"$42.89","fWholesalePrice":"$30.03"}]},{"tierStem":"40","tierName":"Tier 40","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":28.00,"retailPrice":39.99,"fRetailPrice":"$39.99","fWholesalePrice":"$28.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":38.49,"retailPrice":54.99,"fRetailPrice":"$54.99","fWholesalePrice":"$38.49"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":489.30,"retailPrice":699.00,"fRetailPrice":"$699.00","fWholesalePrice":"$489.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":40.08,"retailPrice":62.99,"fRetailPrice":"$62.99","fWholesalePrice":"$40.08"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":41.99,"retailPrice":59.99,"fRetailPrice":"$59.99","fWholesalePrice":"$41.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":3360.00,"retailPrice":4800.00000,"fRetailPrice":"¥4,800","fWholesalePrice":"¥3,360"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":177.01,"retailPrice":258.00,"fRetailPrice":"¥258.00","fWholesalePrice":"¥177.01"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":41.29,"retailPrice":58.98,"fRetailPrice":"S$ 58.98","fWholesalePrice":"S$ 41.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":222.60,"retailPrice":318.00,"fRetailPrice":"HK$ 318.00","fWholesalePrice":"HK$ 222.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":833.00,"retailPrice":1190.00,"fRetailPrice":"NT$ 1,190","fWholesalePrice":"NT$ 833"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":412300.00,"retailPrice":589000.00,"fRetailPrice":"Rp 589ribu","fWholesalePrice":"Rp 412.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1750.00,"retailPrice":2500.00,"fRetailPrice":"Rs 2,500","fWholesalePrice":"Rs 1,750"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":2093.00,"retailPrice":2990.00,"fRetailPrice":"2 990 р.","fWholesalePrice":"2 093 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":73.49,"retailPrice":104.99,"fRetailPrice":"104,99 TL","fWholesalePrice":"73,49 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":111.93,"retailPrice":159.90,"fRetailPrice":"NIS 159.90","fWholesalePrice":"NIS 111.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":478.94,"retailPrice":779.99,"fRetailPrice":"R779.99","fWholesalePrice":"R478.94"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":103.59,"retailPrice":147.99,"fRetailPrice":"SR 147.99","fWholesalePrice":"SR 103.59"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":103.59,"retailPrice":147.99,"fRetailPrice":"AED 147.99","fWholesalePrice":"AED 103.59"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":17.49,"retailPrice":29.99,"fRetailPrice":"£29.99","fWholesalePrice":"£17.49"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":173.04,"retailPrice":309.00,"fRetailPrice":"309,00 kr","fWholesalePrice":"173,04 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":234.64,"retailPrice":419.00,"fRetailPrice":"419,00 kr","fWholesalePrice":"234,64 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":25.28,"retailPrice":39.00,"fRetailPrice":"CHF 39.00","fWholesalePrice":"CHF 25.28"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":245.84,"retailPrice":439.00,"fRetailPrice":"439,00 kr","fWholesalePrice":"245,84 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.93,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"23,93 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.72,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"23,72 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.52,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"23,52 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.52,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"23,52 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.33,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"23,33 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.33,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"23,33 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.33,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"23,33 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.33,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"23,33 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.33,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"23,33 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.13,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"23,13 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.13,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"23,13 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.13,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"23,13 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.13,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"23,13 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.13,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"23,13 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.13,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"23,13 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.95,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"22,95 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.95,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"22,95 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.76,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"22,76 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.76,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"22,76 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.76,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"22,76 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.76,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"22,76 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.58,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"22,58 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.33,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"23,33 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.04,"retailPrice":39.99,"fRetailPrice":"39,99 €","fWholesalePrice":"22,04 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":30.80,"retailPrice":43.99,"fRetailPrice":"$43.99","fWholesalePrice":"$30.80"}]},{"tierStem":"41","tierName":"Tier 41","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":28.70,"retailPrice":40.99,"fRetailPrice":"$40.99","fWholesalePrice":"$28.70"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":39.89,"retailPrice":56.99,"fRetailPrice":"$56.99","fWholesalePrice":"$39.89"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":496.30,"retailPrice":709.00,"fRetailPrice":"$709.00","fWholesalePrice":"$496.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":41.36,"retailPrice":64.99,"fRetailPrice":"$64.99","fWholesalePrice":"$41.36"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":42.69,"retailPrice":60.99,"fRetailPrice":"$60.99","fWholesalePrice":"$42.69"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":3500.00,"retailPrice":5000.00000,"fRetailPrice":"¥5,000","fWholesalePrice":"¥3,500"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":180.44,"retailPrice":263.00,"fRetailPrice":"¥263.00","fWholesalePrice":"¥180.44"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":41.99,"retailPrice":59.98,"fRetailPrice":"S$ 59.98","fWholesalePrice":"S$ 41.99"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":226.10,"retailPrice":323.00,"fRetailPrice":"HK$ 323.00","fWholesalePrice":"HK$ 226.10"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":861.00,"retailPrice":1230.00,"fRetailPrice":"NT$ 1,230","fWholesalePrice":"NT$ 861"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":419300.00,"retailPrice":599000.00,"fRetailPrice":"Rp 599ribu","fWholesalePrice":"Rp 419.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1785.00,"retailPrice":2550.00,"fRetailPrice":"Rs 2,550","fWholesalePrice":"Rs 1,785"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":2163.00,"retailPrice":3090.00,"fRetailPrice":"3 090 р.","fWholesalePrice":"2 163 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":75.59,"retailPrice":107.99,"fRetailPrice":"107,99 TL","fWholesalePrice":"75,59 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":114.73,"retailPrice":163.90,"fRetailPrice":"NIS 163.90","fWholesalePrice":"NIS 114.73"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":491.22,"retailPrice":799.99,"fRetailPrice":"R799.99","fWholesalePrice":"R491.22"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":104.99,"retailPrice":149.99,"fRetailPrice":"SR 149.99","fWholesalePrice":"SR 104.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":104.99,"retailPrice":149.99,"fRetailPrice":"AED 149.99","fWholesalePrice":"AED 104.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":18.08,"retailPrice":30.99,"fRetailPrice":"£30.99","fWholesalePrice":"£18.08"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":178.64,"retailPrice":319.00,"fRetailPrice":"319,00 kr","fWholesalePrice":"178,64 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":240.24,"retailPrice":429.00,"fRetailPrice":"429,00 kr","fWholesalePrice":"240,24 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":25.93,"retailPrice":40.00,"fRetailPrice":"CHF 40.00","fWholesalePrice":"CHF 25.93"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":251.44,"retailPrice":449.00,"fRetailPrice":"449,00 kr","fWholesalePrice":"251,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.52,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"24,52 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.32,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"24,32 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.11,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"24,11 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.11,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"24,11 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.91,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,91 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.91,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,91 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.91,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,91 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.91,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,91 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.91,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,91 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.71,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,71 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.71,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,71 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.71,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,71 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.71,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,71 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.71,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,71 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.71,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,71 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.52,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,52 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.52,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,52 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.33,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,33 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.33,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,33 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.33,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,33 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.33,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,33 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.14,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,14 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.91,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"23,91 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":22.59,"retailPrice":40.99,"fRetailPrice":"40,99 €","fWholesalePrice":"22,59 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":31.57,"retailPrice":45.09,"fRetailPrice":"$45.09","fWholesalePrice":"$31.57"}]},{"tierStem":"42","tierName":"Tier 42","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":29.40,"retailPrice":41.99,"fRetailPrice":"$41.99","fWholesalePrice":"$29.40"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":40.59,"retailPrice":57.99,"fRetailPrice":"$57.99","fWholesalePrice":"$40.59"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":510.30,"retailPrice":729.00,"fRetailPrice":"$729.00","fWholesalePrice":"$510.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":41.99,"retailPrice":65.99,"fRetailPrice":"$65.99","fWholesalePrice":"$41.99"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":44.09,"retailPrice":62.99,"fRetailPrice":"$62.99","fWholesalePrice":"$44.09"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":3570.00,"retailPrice":5100.00000,"fRetailPrice":"¥5,100","fWholesalePrice":"¥3,570"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":183.87,"retailPrice":268.00,"fRetailPrice":"¥268.00","fWholesalePrice":"¥183.87"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":42.69,"retailPrice":60.98,"fRetailPrice":"S$ 60.98","fWholesalePrice":"S$ 42.69"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":229.60,"retailPrice":328.00,"fRetailPrice":"HK$ 328.00","fWholesalePrice":"HK$ 229.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":882.00,"retailPrice":1260.00,"fRetailPrice":"NT$ 1,260","fWholesalePrice":"NT$ 882"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":433300.00,"retailPrice":619000.00,"fRetailPrice":"Rp 619ribu","fWholesalePrice":"Rp 433.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1820.00,"retailPrice":2600.00,"fRetailPrice":"Rs 2,600","fWholesalePrice":"Rs 1,820"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":2233.00,"retailPrice":3190.00,"fRetailPrice":"3 190 р.","fWholesalePrice":"2 233 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":76.99,"retailPrice":109.99,"fRetailPrice":"109,99 TL","fWholesalePrice":"76,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":117.53,"retailPrice":167.90,"fRetailPrice":"NIS 167.90","fWholesalePrice":"NIS 117.53"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":503.50,"retailPrice":819.99,"fRetailPrice":"R819.99","fWholesalePrice":"R503.50"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":108.49,"retailPrice":154.99,"fRetailPrice":"SR 154.99","fWholesalePrice":"SR 108.49"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":108.49,"retailPrice":154.99,"fRetailPrice":"AED 154.99","fWholesalePrice":"AED 108.49"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":18.66,"retailPrice":31.99,"fRetailPrice":"£31.99","fWholesalePrice":"£18.66"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":182.00,"retailPrice":325.00,"fRetailPrice":"325,00 kr","fWholesalePrice":"182,00 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":245.84,"retailPrice":439.00,"fRetailPrice":"439,00 kr","fWholesalePrice":"245,84 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":26.57,"retailPrice":41.00,"fRetailPrice":"CHF 41.00","fWholesalePrice":"CHF 26.57"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":257.04,"retailPrice":459.00,"fRetailPrice":"459,00 kr","fWholesalePrice":"257,04 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.12,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"25,12 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.91,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"24,91 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.70,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"24,70 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.70,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"24,70 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.49,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"24,49 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.49,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"24,49 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.49,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"24,49 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.49,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"24,49 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.49,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"24,49 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.29,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"24,29 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.29,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"24,29 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.29,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"24,29 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.29,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"24,29 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.29,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"24,29 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.29,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"24,29 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.09,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"24,09 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.09,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"24,09 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.90,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"23,90 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.90,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"23,90 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.90,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"23,90 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.90,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"23,90 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.70,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"23,70 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.49,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"24,49 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.14,"retailPrice":41.99,"fRetailPrice":"41,99 €","fWholesalePrice":"23,14 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":32.34,"retailPrice":46.19,"fRetailPrice":"$46.19","fWholesalePrice":"$32.34"}]},{"tierStem":"43","tierName":"Tier 43","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":30.10,"retailPrice":42.99,"fRetailPrice":"$42.99","fWholesalePrice":"$30.10"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":41.99,"retailPrice":59.99,"fRetailPrice":"$59.99","fWholesalePrice":"$41.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":524.30,"retailPrice":749.00,"fRetailPrice":"$749.00","fWholesalePrice":"$524.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":43.27,"retailPrice":67.99,"fRetailPrice":"$67.99","fWholesalePrice":"$43.27"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":44.79,"retailPrice":63.99,"fRetailPrice":"$63.99","fWholesalePrice":"$44.79"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":3640.00,"retailPrice":5200.00000,"fRetailPrice":"¥5,200","fWholesalePrice":"¥3,640"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":187.30,"retailPrice":273.00,"fRetailPrice":"¥273.00","fWholesalePrice":"¥187.30"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":43.39,"retailPrice":61.98,"fRetailPrice":"S$ 61.98","fWholesalePrice":"S$ 43.39"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":236.60,"retailPrice":338.00,"fRetailPrice":"HK$ 338.00","fWholesalePrice":"HK$ 236.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":903.00,"retailPrice":1290.00,"fRetailPrice":"NT$ 1,290","fWholesalePrice":"NT$ 903"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":440300.00,"retailPrice":629000.00,"fRetailPrice":"Rp 629ribu","fWholesalePrice":"Rp 440.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1855.00,"retailPrice":2650.00,"fRetailPrice":"Rs 2,650","fWholesalePrice":"Rs 1,855"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":2275.00,"retailPrice":3250.00,"fRetailPrice":"3 250 р.","fWholesalePrice":"2 275 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":79.09,"retailPrice":112.99,"fRetailPrice":"112,99 TL","fWholesalePrice":"79,09 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":120.33,"retailPrice":171.90,"fRetailPrice":"NIS 171.90","fWholesalePrice":"NIS 120.33"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":509.64,"retailPrice":829.99,"fRetailPrice":"R829.99","fWholesalePrice":"R509.64"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":110.59,"retailPrice":157.99,"fRetailPrice":"SR 157.99","fWholesalePrice":"SR 110.59"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":110.59,"retailPrice":157.99,"fRetailPrice":"AED 157.99","fWholesalePrice":"AED 110.59"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":19.24,"retailPrice":32.99,"fRetailPrice":"£32.99","fWholesalePrice":"£19.24"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":184.24,"retailPrice":329.00,"fRetailPrice":"329,00 kr","fWholesalePrice":"184,24 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":251.44,"retailPrice":449.00,"fRetailPrice":"449,00 kr","fWholesalePrice":"251,44 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":27.22,"retailPrice":42.00,"fRetailPrice":"CHF 42.00","fWholesalePrice":"CHF 27.22"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":262.64,"retailPrice":469.00,"fRetailPrice":"469,00 kr","fWholesalePrice":"262,64 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.72,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"25,72 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.50,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"25,50 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.29,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"25,29 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.29,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"25,29 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.08,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"25,08 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.08,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"25,08 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.08,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"25,08 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.08,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"25,08 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.08,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"25,08 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.87,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"24,87 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.87,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"24,87 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.87,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"24,87 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.87,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"24,87 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.87,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"24,87 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.87,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"24,87 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.67,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"24,67 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.67,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"24,67 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.47,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"24,47 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.47,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"24,47 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.47,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"24,47 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.47,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"24,47 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.27,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"24,27 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.08,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"25,08 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":23.70,"retailPrice":42.99,"fRetailPrice":"42,99 €","fWholesalePrice":"23,70 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":33.11,"retailPrice":47.29,"fRetailPrice":"$47.29","fWholesalePrice":"$33.11"}]},{"tierStem":"44","tierName":"Tier 44","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":30.80,"retailPrice":43.99,"fRetailPrice":"$43.99","fWholesalePrice":"$30.80"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":43.39,"retailPrice":61.99,"fRetailPrice":"$61.99","fWholesalePrice":"$43.39"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":531.30,"retailPrice":759.00,"fRetailPrice":"$759.00","fWholesalePrice":"$531.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":43.90,"retailPrice":68.99,"fRetailPrice":"$68.99","fWholesalePrice":"$43.90"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":46.19,"retailPrice":65.99,"fRetailPrice":"$65.99","fWholesalePrice":"$46.19"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":3710.00,"retailPrice":5300.00000,"fRetailPrice":"¥5,300","fWholesalePrice":"¥3,710"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":190.73,"retailPrice":278.00,"fRetailPrice":"¥278.00","fWholesalePrice":"¥190.73"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":44.09,"retailPrice":62.98,"fRetailPrice":"S$ 62.98","fWholesalePrice":"S$ 44.09"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":243.60,"retailPrice":348.00,"fRetailPrice":"HK$ 348.00","fWholesalePrice":"HK$ 243.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":924.00,"retailPrice":1320.00,"fRetailPrice":"NT$ 1,320","fWholesalePrice":"NT$ 924"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":454300.00,"retailPrice":649000.00,"fRetailPrice":"Rp 649ribu","fWholesalePrice":"Rp 454.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1890.00,"retailPrice":2700.00,"fRetailPrice":"Rs 2,700","fWholesalePrice":"Rs 1,890"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":2303.00,"retailPrice":3290.00,"fRetailPrice":"3 290 р.","fWholesalePrice":"2 303 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":80.49,"retailPrice":114.99,"fRetailPrice":"114,99 TL","fWholesalePrice":"80,49 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":123.13,"retailPrice":175.90,"fRetailPrice":"NIS 175.90","fWholesalePrice":"NIS 123.13"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":521.92,"retailPrice":849.99,"fRetailPrice":"R849.99","fWholesalePrice":"R521.92"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":111.99,"retailPrice":159.99,"fRetailPrice":"SR 159.99","fWholesalePrice":"SR 111.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":111.99,"retailPrice":159.99,"fRetailPrice":"AED 159.99","fWholesalePrice":"AED 111.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":19.83,"retailPrice":33.99,"fRetailPrice":"£33.99","fWholesalePrice":"£19.83"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":189.84,"retailPrice":339.00,"fRetailPrice":"339,00 kr","fWholesalePrice":"189,84 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":257.04,"retailPrice":459.00,"fRetailPrice":"459,00 kr","fWholesalePrice":"257,04 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":27.87,"retailPrice":43.00,"fRetailPrice":"CHF 43.00","fWholesalePrice":"CHF 27.87"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":268.24,"retailPrice":479.00,"fRetailPrice":"479,00 kr","fWholesalePrice":"268,24 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.32,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"26,32 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.10,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"26,10 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.88,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,88 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.88,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,88 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.66,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,66 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.66,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,66 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.66,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,66 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.66,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,66 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.66,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,66 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.45,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,45 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.45,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,45 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.45,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,45 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.45,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,45 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.45,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,45 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.45,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,45 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.24,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,24 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.24,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,24 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.03,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,03 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.03,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,03 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.03,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,03 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.03,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,03 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.83,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"24,83 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.66,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"25,66 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.25,"retailPrice":43.99,"fRetailPrice":"43,99 €","fWholesalePrice":"24,25 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":33.88,"retailPrice":48.39,"fRetailPrice":"$48.39","fWholesalePrice":"$33.88"}]},{"tierStem":"45","tierName":"Tier 45","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":31.50,"retailPrice":44.99,"fRetailPrice":"$44.99","fWholesalePrice":"$31.50"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":44.09,"retailPrice":62.99,"fRetailPrice":"$62.99","fWholesalePrice":"$44.09"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":545.30,"retailPrice":779.00,"fRetailPrice":"$779.00","fWholesalePrice":"$545.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":44.54,"retailPrice":69.99,"fRetailPrice":"$69.99","fWholesalePrice":"$44.54"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":46.89,"retailPrice":66.99,"fRetailPrice":"$66.99","fWholesalePrice":"$46.89"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":3780.00,"retailPrice":5400.00000,"fRetailPrice":"¥5,400","fWholesalePrice":"¥3,780"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":194.16,"retailPrice":283.00,"fRetailPrice":"¥283.00","fWholesalePrice":"¥194.16"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":44.79,"retailPrice":63.98,"fRetailPrice":"S$ 63.98","fWholesalePrice":"S$ 44.79"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":250.60,"retailPrice":358.00,"fRetailPrice":"HK$ 358.00","fWholesalePrice":"HK$ 250.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":945.00,"retailPrice":1350.00,"fRetailPrice":"NT$ 1,350","fWholesalePrice":"NT$ 945"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":461300.00,"retailPrice":659000.00,"fRetailPrice":"Rp 659ribu","fWholesalePrice":"Rp 461.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1960.00,"retailPrice":2800.00,"fRetailPrice":"Rs 2,800","fWholesalePrice":"Rs 1,960"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":2373.00,"retailPrice":3390.00,"fRetailPrice":"3 390 р.","fWholesalePrice":"2 373 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":82.59,"retailPrice":117.99,"fRetailPrice":"117,99 TL","fWholesalePrice":"82,59 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":125.93,"retailPrice":179.90,"fRetailPrice":"NIS 179.90","fWholesalePrice":"NIS 125.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":540.34,"retailPrice":879.99,"fRetailPrice":"R879.99","fWholesalePrice":"R540.34"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":115.49,"retailPrice":164.99,"fRetailPrice":"SR 164.99","fWholesalePrice":"SR 115.49"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":115.49,"retailPrice":164.99,"fRetailPrice":"AED 164.99","fWholesalePrice":"AED 115.49"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":20.41,"retailPrice":34.99,"fRetailPrice":"£34.99","fWholesalePrice":"£20.41"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":195.44,"retailPrice":349.00,"fRetailPrice":"349,00 kr","fWholesalePrice":"195,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":262.64,"retailPrice":469.00,"fRetailPrice":"469,00 kr","fWholesalePrice":"262,64 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":28.52,"retailPrice":44.00,"fRetailPrice":"CHF 44.00","fWholesalePrice":"CHF 28.52"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":273.84,"retailPrice":489.00,"fRetailPrice":"489,00 kr","fWholesalePrice":"273,84 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.92,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"26,92 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.69,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"26,69 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.46,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"26,46 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.46,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"26,46 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.24,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"26,24 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.24,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"26,24 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.24,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"26,24 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.24,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"26,24 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.24,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"26,24 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.03,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"26,03 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.03,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"26,03 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.03,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"26,03 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.03,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"26,03 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.03,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"26,03 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.03,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"26,03 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.81,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"25,81 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.81,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"25,81 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.60,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"25,60 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.60,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"25,60 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.60,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"25,60 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.60,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"25,60 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.40,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"25,40 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.24,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"26,24 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":24.80,"retailPrice":44.99,"fRetailPrice":"44,99 €","fWholesalePrice":"24,80 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":34.65,"retailPrice":49.49,"fRetailPrice":"$49.49","fWholesalePrice":"$34.65"}]},{"tierStem":"46","tierName":"Tier 46","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":32.20,"retailPrice":45.99,"fRetailPrice":"$45.99","fWholesalePrice":"$32.20"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":44.79,"retailPrice":63.99,"fRetailPrice":"$63.99","fWholesalePrice":"$44.79"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":559.30,"retailPrice":799.00,"fRetailPrice":"$799.00","fWholesalePrice":"$559.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":45.81,"retailPrice":71.99,"fRetailPrice":"$71.99","fWholesalePrice":"$45.81"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":48.29,"retailPrice":68.99,"fRetailPrice":"$68.99","fWholesalePrice":"$48.29"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":3920.00,"retailPrice":5600.00000,"fRetailPrice":"¥5,600","fWholesalePrice":"¥3,920"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":197.59,"retailPrice":288.00,"fRetailPrice":"¥288.00","fWholesalePrice":"¥197.59"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":45.49,"retailPrice":64.98,"fRetailPrice":"S$ 64.98","fWholesalePrice":"S$ 45.49"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":254.10,"retailPrice":363.00,"fRetailPrice":"HK$ 363.00","fWholesalePrice":"HK$ 254.10"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":973.00,"retailPrice":1390.00,"fRetailPrice":"NT$ 1,390","fWholesalePrice":"NT$ 973"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":475300.00,"retailPrice":679000.00,"fRetailPrice":"Rp 679ribu","fWholesalePrice":"Rp 475.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":1995.00,"retailPrice":2850.00,"fRetailPrice":"Rs 2,850","fWholesalePrice":"Rs 1,995"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":2443.00,"retailPrice":3490.00,"fRetailPrice":"3 490 р.","fWholesalePrice":"2 443 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":83.99,"retailPrice":119.99,"fRetailPrice":"119,99 TL","fWholesalePrice":"83,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":128.73,"retailPrice":183.90,"fRetailPrice":"NIS 183.90","fWholesalePrice":"NIS 128.73"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":552.63,"retailPrice":899.99,"fRetailPrice":"R899.99","fWholesalePrice":"R552.63"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":117.59,"retailPrice":167.99,"fRetailPrice":"SR 167.99","fWholesalePrice":"SR 117.59"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":117.59,"retailPrice":167.99,"fRetailPrice":"AED 167.99","fWholesalePrice":"AED 117.59"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":20.99,"retailPrice":35.99,"fRetailPrice":"£35.99","fWholesalePrice":"£20.99"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":198.80,"retailPrice":355.00,"fRetailPrice":"355,00 kr","fWholesalePrice":"198,80 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":268.24,"retailPrice":479.00,"fRetailPrice":"479,00 kr","fWholesalePrice":"268,24 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":29.17,"retailPrice":45.00,"fRetailPrice":"CHF 45.00","fWholesalePrice":"CHF 29.17"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":279.44,"retailPrice":499.00,"fRetailPrice":"499,00 kr","fWholesalePrice":"279,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.52,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"27,52 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.28,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"27,28 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.05,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"27,05 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.05,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"27,05 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.83,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"26,83 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.83,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"26,83 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.83,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"26,83 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.83,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"26,83 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.83,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"26,83 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.61,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"26,61 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.61,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"26,61 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.61,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"26,61 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.61,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"26,61 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.61,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"26,61 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.61,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"26,61 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.39,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"26,39 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.39,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"26,39 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.17,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"26,17 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.17,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"26,17 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.17,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"26,17 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.17,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"26,17 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.96,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"25,96 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.83,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"26,83 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.35,"retailPrice":45.99,"fRetailPrice":"45,99 €","fWholesalePrice":"25,35 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":35.42,"retailPrice":50.59,"fRetailPrice":"$50.59","fWholesalePrice":"$35.42"}]},{"tierStem":"47","tierName":"Tier 47","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":32.90,"retailPrice":46.99,"fRetailPrice":"$46.99","fWholesalePrice":"$32.90"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":45.49,"retailPrice":64.99,"fRetailPrice":"$64.99","fWholesalePrice":"$45.49"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":580.30,"retailPrice":829.00,"fRetailPrice":"$829.00","fWholesalePrice":"$580.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":46.45,"retailPrice":72.99,"fRetailPrice":"$72.99","fWholesalePrice":"$46.45"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":48.99,"retailPrice":69.99,"fRetailPrice":"$69.99","fWholesalePrice":"$48.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":3990.00,"retailPrice":5700.00000,"fRetailPrice":"¥5,700","fWholesalePrice":"¥3,990"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":204.45,"retailPrice":298.00,"fRetailPrice":"¥298.00","fWholesalePrice":"¥204.45"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":46.19,"retailPrice":65.98,"fRetailPrice":"S$ 65.98","fWholesalePrice":"S$ 46.19"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":257.60,"retailPrice":368.00,"fRetailPrice":"HK$ 368.00","fWholesalePrice":"HK$ 257.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":994.00,"retailPrice":1420.00,"fRetailPrice":"NT$ 1,420","fWholesalePrice":"NT$ 994"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":482300.00,"retailPrice":689000.00,"fRetailPrice":"Rp 689ribu","fWholesalePrice":"Rp 482.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":2030.00,"retailPrice":2900.00,"fRetailPrice":"Rs 2,900","fWholesalePrice":"Rs 2,030"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":2513.00,"retailPrice":3590.00,"fRetailPrice":"3 590 р.","fWholesalePrice":"2 513 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":86.09,"retailPrice":122.99,"fRetailPrice":"122,99 TL","fWholesalePrice":"86,09 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":131.53,"retailPrice":187.90,"fRetailPrice":"NIS 187.90","fWholesalePrice":"NIS 131.53"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":564.91,"retailPrice":919.99,"fRetailPrice":"R919.99","fWholesalePrice":"R564.91"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":118.99,"retailPrice":169.99,"fRetailPrice":"SR 169.99","fWholesalePrice":"SR 118.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":118.99,"retailPrice":169.99,"fRetailPrice":"AED 169.99","fWholesalePrice":"AED 118.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":21.58,"retailPrice":36.99,"fRetailPrice":"£36.99","fWholesalePrice":"£21.58"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":201.04,"retailPrice":359.00,"fRetailPrice":"359,00 kr","fWholesalePrice":"201,04 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":273.84,"retailPrice":489.00,"fRetailPrice":"489,00 kr","fWholesalePrice":"273,84 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":29.81,"retailPrice":46.00,"fRetailPrice":"CHF 46.00","fWholesalePrice":"CHF 29.81"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":285.04,"retailPrice":509.00,"fRetailPrice":"509,00 kr","fWholesalePrice":"285,04 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.11,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"28,11 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.88,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"27,88 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.64,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"27,64 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.64,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"27,64 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.41,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"27,41 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.41,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"27,41 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.41,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"27,41 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.41,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"27,41 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.41,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"27,41 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.18,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"27,18 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.18,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"27,18 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.18,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"27,18 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.18,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"27,18 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.18,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"27,18 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.18,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"27,18 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.96,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"26,96 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.96,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"26,96 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.74,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"26,74 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.74,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"26,74 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.74,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"26,74 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.74,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"26,74 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.53,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"26,53 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.41,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"27,41 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":25.90,"retailPrice":46.99,"fRetailPrice":"46,99 €","fWholesalePrice":"25,90 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":36.19,"retailPrice":51.69,"fRetailPrice":"$51.69","fWholesalePrice":"$36.19"}]},{"tierStem":"48","tierName":"Tier 48","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":33.60,"retailPrice":47.99,"fRetailPrice":"$47.99","fWholesalePrice":"$33.60"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":46.89,"retailPrice":66.99,"fRetailPrice":"$66.99","fWholesalePrice":"$46.89"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":594.30,"retailPrice":849.00,"fRetailPrice":"$849.00","fWholesalePrice":"$594.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":47.72,"retailPrice":74.99,"fRetailPrice":"$74.99","fWholesalePrice":"$47.72"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":50.39,"retailPrice":71.99,"fRetailPrice":"$71.99","fWholesalePrice":"$50.39"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":4060.00,"retailPrice":5800.00000,"fRetailPrice":"¥5,800","fWholesalePrice":"¥4,060"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":211.31,"retailPrice":308.00,"fRetailPrice":"¥308.00","fWholesalePrice":"¥211.31"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":46.89,"retailPrice":66.98,"fRetailPrice":"S$ 66.98","fWholesalePrice":"S$ 46.89"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":264.60,"retailPrice":378.00,"fRetailPrice":"HK$ 378.00","fWholesalePrice":"HK$ 264.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":1008.00,"retailPrice":1440.00,"fRetailPrice":"NT$ 1,440","fWholesalePrice":"NT$ 1,008"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":496300.00,"retailPrice":709000.00,"fRetailPrice":"Rp 709ribu","fWholesalePrice":"Rp 496.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":2100.00,"retailPrice":3000.00,"fRetailPrice":"Rs 3,000","fWholesalePrice":"Rs 2,100"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":2555.00,"retailPrice":3650.00,"fRetailPrice":"3 650 р.","fWholesalePrice":"2 555 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":87.49,"retailPrice":124.99,"fRetailPrice":"124,99 TL","fWholesalePrice":"87,49 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":134.33,"retailPrice":191.90,"fRetailPrice":"NIS 191.90","fWholesalePrice":"NIS 134.33"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":571.05,"retailPrice":929.99,"fRetailPrice":"R929.99","fWholesalePrice":"R571.05"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":122.49,"retailPrice":174.99,"fRetailPrice":"SR 174.99","fWholesalePrice":"SR 122.49"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":122.49,"retailPrice":174.99,"fRetailPrice":"AED 174.99","fWholesalePrice":"AED 122.49"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":22.16,"retailPrice":37.99,"fRetailPrice":"£37.99","fWholesalePrice":"£22.16"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":206.64,"retailPrice":369.00,"fRetailPrice":"369,00 kr","fWholesalePrice":"206,64 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":279.44,"retailPrice":499.00,"fRetailPrice":"499,00 kr","fWholesalePrice":"279,44 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":30.46,"retailPrice":47.00,"fRetailPrice":"CHF 47.00","fWholesalePrice":"CHF 30.46"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":290.64,"retailPrice":519.00,"fRetailPrice":"519,00 kr","fWholesalePrice":"290,64 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.71,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"28,71 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.47,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"28,47 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.23,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"28,23 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.23,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"28,23 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.99,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,99 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.99,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,99 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.99,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,99 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.99,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,99 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.99,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,99 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.76,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,76 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.76,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,76 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.76,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,76 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.76,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,76 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.76,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,76 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.76,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,76 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.54,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,54 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.54,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,54 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.31,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,31 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.31,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,31 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.31,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,31 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.31,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,31 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.09,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,09 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.99,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"27,99 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":26.45,"retailPrice":47.99,"fRetailPrice":"47,99 €","fWholesalePrice":"26,45 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":36.96,"retailPrice":52.79,"fRetailPrice":"$52.79","fWholesalePrice":"$36.96"}]},{"tierStem":"49","tierName":"Tier 49","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":34.30,"retailPrice":48.99,"fRetailPrice":"$48.99","fWholesalePrice":"$34.30"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":47.59,"retailPrice":67.99,"fRetailPrice":"$67.99","fWholesalePrice":"$47.59"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":615.30,"retailPrice":879.00,"fRetailPrice":"$879.00","fWholesalePrice":"$615.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":49.63,"retailPrice":77.99,"fRetailPrice":"$77.99","fWholesalePrice":"$49.63"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":51.09,"retailPrice":72.99,"fRetailPrice":"$72.99","fWholesalePrice":"$51.09"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":4130.00,"retailPrice":5900.00000,"fRetailPrice":"¥5,900","fWholesalePrice":"¥4,130"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":218.17,"retailPrice":318.00,"fRetailPrice":"¥318.00","fWholesalePrice":"¥218.17"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":47.59,"retailPrice":67.98,"fRetailPrice":"S$ 67.98","fWholesalePrice":"S$ 47.59"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":271.60,"retailPrice":388.00,"fRetailPrice":"HK$ 388.00","fWholesalePrice":"HK$ 271.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":1029.00,"retailPrice":1470.00,"fRetailPrice":"NT$ 1,470","fWholesalePrice":"NT$ 1,029"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":503300.00,"retailPrice":719000.00,"fRetailPrice":"Rp 719ribu","fWholesalePrice":"Rp 503.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":2135.00,"retailPrice":3050.00,"fRetailPrice":"Rs 3,050","fWholesalePrice":"Rs 2,135"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":2583.00,"retailPrice":3690.00,"fRetailPrice":"3 690 р.","fWholesalePrice":"2 583 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":89.44,"retailPrice":127.77,"fRetailPrice":"127,77 TL","fWholesalePrice":"89,44 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":137.13,"retailPrice":195.90,"fRetailPrice":"NIS 195.90","fWholesalePrice":"NIS 137.13"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":583.33,"retailPrice":949.99,"fRetailPrice":"R949.99","fWholesalePrice":"R583.33"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":125.99,"retailPrice":179.99,"fRetailPrice":"SR 179.99","fWholesalePrice":"SR 125.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":125.99,"retailPrice":179.99,"fRetailPrice":"AED 179.99","fWholesalePrice":"AED 125.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":22.74,"retailPrice":38.99,"fRetailPrice":"£38.99","fWholesalePrice":"£22.74"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":212.24,"retailPrice":379.00,"fRetailPrice":"379,00 kr","fWholesalePrice":"212,24 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":285.04,"retailPrice":509.00,"fRetailPrice":"509,00 kr","fWholesalePrice":"285,04 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":30.79,"retailPrice":47.50,"fRetailPrice":"CHF 47.50","fWholesalePrice":"CHF 30.79"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":296.24,"retailPrice":529.00,"fRetailPrice":"529,00 kr","fWholesalePrice":"296,24 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":29.31,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"29,31 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":29.06,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"29,06 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.82,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"28,82 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.82,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"28,82 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.58,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"28,58 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.58,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"28,58 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.58,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"28,58 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.58,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"28,58 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.58,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"28,58 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.34,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"28,34 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.34,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"28,34 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.34,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"28,34 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.34,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"28,34 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.34,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"28,34 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.34,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"28,34 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.11,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"28,11 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.11,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"28,11 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.88,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"27,88 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.88,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"27,88 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.88,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"27,88 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.88,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"27,88 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.66,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"27,66 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.58,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"28,58 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.00,"retailPrice":48.99,"fRetailPrice":"48,99 €","fWholesalePrice":"27,00 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":37.73,"retailPrice":53.89,"fRetailPrice":"$53.89","fWholesalePrice":"$37.73"}]},{"tierStem":"50","tierName":"Tier 50","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":35.00,"retailPrice":49.99,"fRetailPrice":"$49.99","fWholesalePrice":"$35.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":48.99,"retailPrice":69.99,"fRetailPrice":"$69.99","fWholesalePrice":"$48.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":629.30,"retailPrice":899.00,"fRetailPrice":"$899.00","fWholesalePrice":"$629.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":50.90,"retailPrice":79.99,"fRetailPrice":"$79.99","fWholesalePrice":"$50.90"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":52.49,"retailPrice":74.99,"fRetailPrice":"$74.99","fWholesalePrice":"$52.49"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":4200.00,"retailPrice":6000.00000,"fRetailPrice":"¥6,000","fWholesalePrice":"¥4,200"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":225.03,"retailPrice":328.00,"fRetailPrice":"¥328.00","fWholesalePrice":"¥225.03"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":48.29,"retailPrice":68.98,"fRetailPrice":"S$ 68.98","fWholesalePrice":"S$ 48.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":278.60,"retailPrice":398.00,"fRetailPrice":"HK$ 398.00","fWholesalePrice":"HK$ 278.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":1043.00,"retailPrice":1490.00,"fRetailPrice":"NT$ 1,490","fWholesalePrice":"NT$ 1,043"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":517300.00,"retailPrice":739000.00,"fRetailPrice":"Rp 739ribu","fWholesalePrice":"Rp 517.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":2170.00,"retailPrice":3100.00,"fRetailPrice":"Rs 3,100","fWholesalePrice":"Rs 2,170"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":2653.00,"retailPrice":3790.00,"fRetailPrice":"3 790 р.","fWholesalePrice":"2 653 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":90.99,"retailPrice":129.99,"fRetailPrice":"129,99 TL","fWholesalePrice":"90,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":139.93,"retailPrice":199.90,"fRetailPrice":"NIS 199.90","fWholesalePrice":"NIS 139.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":614.03,"retailPrice":999.99,"fRetailPrice":"R999.99","fWholesalePrice":"R614.03"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":129.49,"retailPrice":184.99,"fRetailPrice":"SR 184.99","fWholesalePrice":"SR 129.49"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":129.49,"retailPrice":184.99,"fRetailPrice":"AED 184.99","fWholesalePrice":"AED 129.49"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":23.33,"retailPrice":39.99,"fRetailPrice":"£39.99","fWholesalePrice":"£23.33"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":217.84,"retailPrice":389.00,"fRetailPrice":"389,00 kr","fWholesalePrice":"217,84 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":290.64,"retailPrice":519.00,"fRetailPrice":"519,00 kr","fWholesalePrice":"290,64 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":31.11,"retailPrice":48.00,"fRetailPrice":"CHF 48.00","fWholesalePrice":"CHF 31.11"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":307.44,"retailPrice":549.00,"fRetailPrice":"549,00 kr","fWholesalePrice":"307,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":29.91,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"29,91 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":29.66,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"29,66 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":29.41,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"29,41 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":29.41,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"29,41 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":29.16,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"29,16 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":29.16,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"29,16 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":29.16,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"29,16 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":29.16,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"29,16 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":29.16,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"29,16 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.92,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"28,92 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.92,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"28,92 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.92,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"28,92 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.92,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"28,92 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.92,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"28,92 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.92,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"28,92 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.68,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"28,68 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.68,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"28,68 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.45,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"28,45 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.45,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"28,45 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.45,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"28,45 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.45,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"28,45 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":28.22,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"28,22 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":29.16,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"29,16 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":27.55,"retailPrice":49.99,"fRetailPrice":"49,99 €","fWholesalePrice":"27,55 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":38.50,"retailPrice":54.99,"fRetailPrice":"$54.99","fWholesalePrice":"$38.50"}]},{"tierStem":"51","tierName":"Tier 51","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":38.50,"retailPrice":54.99,"fRetailPrice":"$54.99","fWholesalePrice":"$38.50"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":52.49,"retailPrice":74.99,"fRetailPrice":"$74.99","fWholesalePrice":"$52.49"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":664.30,"retailPrice":949.00,"fRetailPrice":"$949.00","fWholesalePrice":"$664.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":54.08,"retailPrice":84.99,"fRetailPrice":"$84.99","fWholesalePrice":"$54.08"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":55.99,"retailPrice":79.99,"fRetailPrice":"$79.99","fWholesalePrice":"$55.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":4760.00,"retailPrice":6800.00000,"fRetailPrice":"¥6,800","fWholesalePrice":"¥4,760"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":238.75,"retailPrice":348.00,"fRetailPrice":"¥348.00","fWholesalePrice":"¥238.75"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":55.29,"retailPrice":78.98,"fRetailPrice":"S$ 78.98","fWholesalePrice":"S$ 55.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":292.60,"retailPrice":418.00,"fRetailPrice":"HK$ 418.00","fWholesalePrice":"HK$ 292.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":1113.00,"retailPrice":1590.00,"fRetailPrice":"NT$ 1,590","fWholesalePrice":"NT$ 1,113"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":559300.00,"retailPrice":799000.00,"fRetailPrice":"Rp 799ribu","fWholesalePrice":"Rp 559.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":2380.00,"retailPrice":3400.00,"fRetailPrice":"Rs 3,400","fWholesalePrice":"Rs 2,380"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":2793.00,"retailPrice":3990.00,"fRetailPrice":"3 990 р.","fWholesalePrice":"2 793 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":104.99,"retailPrice":149.99,"fRetailPrice":"149,99 TL","fWholesalePrice":"104,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":153.93,"retailPrice":219.90,"fRetailPrice":"NIS 219.90","fWholesalePrice":"NIS 153.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":675.43,"retailPrice":1099.99,"fRetailPrice":"R1,099.99","fWholesalePrice":"R675.43"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":139.99,"retailPrice":199.99,"fRetailPrice":"SR 199.99","fWholesalePrice":"SR 139.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":139.99,"retailPrice":199.99,"fRetailPrice":"AED 199.99","fWholesalePrice":"AED 139.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":25.08,"retailPrice":42.99,"fRetailPrice":"£42.99","fWholesalePrice":"£25.08"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":240.24,"retailPrice":429.00,"fRetailPrice":"429,00 kr","fWholesalePrice":"240,24 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":333.20,"retailPrice":595.00,"fRetailPrice":"595,00 kr","fWholesalePrice":"333,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":35.65,"retailPrice":55.00,"fRetailPrice":"CHF 55.00","fWholesalePrice":"CHF 35.65"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":335.44,"retailPrice":599.00,"fRetailPrice":"599,00 kr","fWholesalePrice":"335,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":32.90,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"32,90 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":32.62,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"32,62 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":32.35,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"32,35 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":32.35,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"32,35 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":32.08,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"32,08 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":32.08,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"32,08 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":32.08,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"32,08 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":32.08,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"32,08 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":32.08,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"32,08 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":31.81,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"31,81 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":31.81,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"31,81 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":31.81,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"31,81 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":31.81,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"31,81 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":31.81,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"31,81 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":31.81,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"31,81 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":31.55,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"31,55 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":31.55,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"31,55 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":31.30,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"31,30 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":31.30,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"31,30 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":31.30,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"31,30 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":31.30,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"31,30 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":31.04,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"31,04 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":32.08,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"32,08 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":30.31,"retailPrice":54.99,"fRetailPrice":"54,99 €","fWholesalePrice":"30,31 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":42.35,"retailPrice":60.49,"fRetailPrice":"$60.49","fWholesalePrice":"$42.35"}]},{"tierStem":"52","tierName":"Tier 52","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":42.00,"retailPrice":59.99,"fRetailPrice":"$59.99","fWholesalePrice":"$42.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":59.49,"retailPrice":84.99,"fRetailPrice":"$84.99","fWholesalePrice":"$59.49"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":699.30,"retailPrice":999.00,"fRetailPrice":"$999.00","fWholesalePrice":"$699.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":57.27,"retailPrice":89.99,"fRetailPrice":"$89.99","fWholesalePrice":"$57.27"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":62.99,"retailPrice":89.99,"fRetailPrice":"$89.99","fWholesalePrice":"$62.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":5180.00,"retailPrice":7400.00000,"fRetailPrice":"¥7,400","fWholesalePrice":"¥5,180"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":266.20,"retailPrice":388.00,"fRetailPrice":"¥388.00","fWholesalePrice":"¥266.20"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":62.29,"retailPrice":88.98,"fRetailPrice":"S$ 88.98","fWholesalePrice":"S$ 62.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":313.60,"retailPrice":448.00,"fRetailPrice":"HK$ 448.00","fWholesalePrice":"HK$ 313.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":1253.00,"retailPrice":1790.00,"fRetailPrice":"NT$ 1,790","fWholesalePrice":"NT$ 1,253"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":629300.00,"retailPrice":899000.00,"fRetailPrice":"Rp 899ribu","fWholesalePrice":"Rp 629.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":2590.00,"retailPrice":3700.00,"fRetailPrice":"Rs 3,700","fWholesalePrice":"Rs 2,590"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":3143.00,"retailPrice":4490.00,"fRetailPrice":"4 490 р.","fWholesalePrice":"3 143 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":111.99,"retailPrice":159.99,"fRetailPrice":"159,99 TL","fWholesalePrice":"111,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":167.93,"retailPrice":239.90,"fRetailPrice":"NIS 239.90","fWholesalePrice":"NIS 167.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":736.84,"retailPrice":1199.99,"fRetailPrice":"R1,199.99","fWholesalePrice":"R736.84"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":153.99,"retailPrice":219.99,"fRetailPrice":"SR 219.99","fWholesalePrice":"SR 153.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":153.99,"retailPrice":219.99,"fRetailPrice":"AED 219.99","fWholesalePrice":"AED 153.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":26.24,"retailPrice":44.99,"fRetailPrice":"£44.99","fWholesalePrice":"£26.24"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":251.44,"retailPrice":449.00,"fRetailPrice":"449,00 kr","fWholesalePrice":"251,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":363.44,"retailPrice":649.00,"fRetailPrice":"649,00 kr","fWholesalePrice":"363,44 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":38.89,"retailPrice":60.00,"fRetailPrice":"CHF 60.00","fWholesalePrice":"CHF 38.89"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":363.44,"retailPrice":649.00,"fRetailPrice":"649,00 kr","fWholesalePrice":"363,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":35.89,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"35,89 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":35.59,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"35,59 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":35.29,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"35,29 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":35.29,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"35,29 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":34.99,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"34,99 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":34.99,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"34,99 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":34.99,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"34,99 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":34.99,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"34,99 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":34.99,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"34,99 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":34.70,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"34,70 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":34.70,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"34,70 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":34.70,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"34,70 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":34.70,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"34,70 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":34.70,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"34,70 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":34.70,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"34,70 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":34.42,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"34,42 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":34.42,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"34,42 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":34.14,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"34,14 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":34.14,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"34,14 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":34.14,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"34,14 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":34.14,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"34,14 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":33.87,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"33,87 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":34.99,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"34,99 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":33.07,"retailPrice":59.99,"fRetailPrice":"59,99 €","fWholesalePrice":"33,07 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":46.20,"retailPrice":65.99,"fRetailPrice":"$65.99","fWholesalePrice":"$46.20"}]},{"tierStem":"53","tierName":"Tier 53","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":45.50,"retailPrice":64.99,"fRetailPrice":"$64.99","fWholesalePrice":"$45.50"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":62.99,"retailPrice":89.99,"fRetailPrice":"$89.99","fWholesalePrice":"$62.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":769.30,"retailPrice":1099.00,"fRetailPrice":"$1,099.00","fWholesalePrice":"$769.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":63.63,"retailPrice":99.99,"fRetailPrice":"$99.99","fWholesalePrice":"$63.63"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":66.49,"retailPrice":94.99,"fRetailPrice":"$94.99","fWholesalePrice":"$66.49"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":5460.00,"retailPrice":7800.00000,"fRetailPrice":"¥7,800","fWholesalePrice":"¥5,460"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":286.78,"retailPrice":418.00,"fRetailPrice":"¥418.00","fWholesalePrice":"¥286.78"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":66.49,"retailPrice":94.98,"fRetailPrice":"S$ 94.98","fWholesalePrice":"S$ 66.49"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":341.60,"retailPrice":488.00,"fRetailPrice":"HK$ 488.00","fWholesalePrice":"HK$ 341.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":1393.00,"retailPrice":1990.00,"fRetailPrice":"NT$ 1,990","fWholesalePrice":"NT$ 1,393"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":664300.00,"retailPrice":949000.00,"fRetailPrice":"Rp 949ribu","fWholesalePrice":"Rp 664.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":2800.00,"retailPrice":4000.00,"fRetailPrice":"Rs 4,000","fWholesalePrice":"Rs 2,800"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":3493.00,"retailPrice":4990.00,"fRetailPrice":"4 990 р.","fWholesalePrice":"3 493 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":118.99,"retailPrice":169.99,"fRetailPrice":"169,99 TL","fWholesalePrice":"118,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":181.93,"retailPrice":259.90,"fRetailPrice":"NIS 259.90","fWholesalePrice":"NIS 181.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":798.24,"retailPrice":1299.99,"fRetailPrice":"R1,299.99","fWholesalePrice":"R798.24"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":160.99,"retailPrice":229.99,"fRetailPrice":"SR 229.99","fWholesalePrice":"SR 160.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":160.99,"retailPrice":229.99,"fRetailPrice":"AED 229.99","fWholesalePrice":"AED 160.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":29.16,"retailPrice":49.99,"fRetailPrice":"£49.99","fWholesalePrice":"£29.16"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":279.44,"retailPrice":499.00,"fRetailPrice":"499,00 kr","fWholesalePrice":"279,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":389.20,"retailPrice":695.00,"fRetailPrice":"695,00 kr","fWholesalePrice":"389,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":42.13,"retailPrice":65.00,"fRetailPrice":"CHF 65.00","fWholesalePrice":"CHF 42.13"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":391.44,"retailPrice":699.00,"fRetailPrice":"699,00 kr","fWholesalePrice":"391,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":38.88,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"38,88 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":38.55,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"38,55 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":38.23,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"38,23 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":38.23,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"38,23 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":37.91,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"37,91 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":37.91,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"37,91 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":37.91,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"37,91 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":37.91,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"37,91 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":37.91,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"37,91 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":37.60,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"37,60 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":37.60,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"37,60 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":37.60,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"37,60 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":37.60,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"37,60 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":37.60,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"37,60 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":37.60,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"37,60 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":37.29,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"37,29 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":37.29,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"37,29 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":36.99,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"36,99 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":36.99,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"36,99 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":36.99,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"36,99 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":36.99,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"36,99 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":36.69,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"36,69 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":37.91,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"37,91 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":35.82,"retailPrice":64.99,"fRetailPrice":"64,99 €","fWholesalePrice":"35,82 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":50.05,"retailPrice":71.49,"fRetailPrice":"$71.49","fWholesalePrice":"$50.05"}]},{"tierStem":"54","tierName":"Tier 54","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":49.00,"retailPrice":69.99,"fRetailPrice":"$69.99","fWholesalePrice":"$49.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":69.99,"retailPrice":99.99,"fRetailPrice":"$99.99","fWholesalePrice":"$69.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":839.30,"retailPrice":1199.00,"fRetailPrice":"$1,199.00","fWholesalePrice":"$839.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":69.99,"retailPrice":109.99,"fRetailPrice":"$109.99","fWholesalePrice":"$69.99"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":69.99,"retailPrice":99.99,"fRetailPrice":"$99.99","fWholesalePrice":"$69.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":5880.00,"retailPrice":8400.00000,"fRetailPrice":"¥8,400","fWholesalePrice":"¥5,880"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":307.36,"retailPrice":448.00,"fRetailPrice":"¥448.00","fWholesalePrice":"¥307.36"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":69.29,"retailPrice":98.98,"fRetailPrice":"S$ 98.98","fWholesalePrice":"S$ 69.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":383.60,"retailPrice":548.00,"fRetailPrice":"HK$ 548.00","fWholesalePrice":"HK$ 383.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":1463.00,"retailPrice":2090.00,"fRetailPrice":"NT$ 2,090","fWholesalePrice":"NT$ 1,463"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":699300.00,"retailPrice":999000.00,"fRetailPrice":"Rp 999ribu","fWholesalePrice":"Rp 699.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":3010.00,"retailPrice":4300.00,"fRetailPrice":"Rs 4,300","fWholesalePrice":"Rs 3,010"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":3843.00,"retailPrice":5490.00,"fRetailPrice":"5 490 р.","fWholesalePrice":"3 843 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":132.99,"retailPrice":189.99,"fRetailPrice":"189,99 TL","fWholesalePrice":"132,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":195.93,"retailPrice":279.90,"fRetailPrice":"NIS 279.90","fWholesalePrice":"NIS 195.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":859.64,"retailPrice":1399.99,"fRetailPrice":"R1,399.99","fWholesalePrice":"R859.64"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":174.99,"retailPrice":249.99,"fRetailPrice":"SR 249.99","fWholesalePrice":"SR 174.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":174.99,"retailPrice":249.99,"fRetailPrice":"AED 249.99","fWholesalePrice":"AED 174.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":30.91,"retailPrice":52.99,"fRetailPrice":"£52.99","fWholesalePrice":"£30.91"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":307.44,"retailPrice":549.00,"fRetailPrice":"549,00 kr","fWholesalePrice":"307,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":419.44,"retailPrice":749.00,"fRetailPrice":"749,00 kr","fWholesalePrice":"419,44 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":45.37,"retailPrice":70.00,"fRetailPrice":"CHF 70.00","fWholesalePrice":"CHF 45.37"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":419.44,"retailPrice":749.00,"fRetailPrice":"749,00 kr","fWholesalePrice":"419,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":41.87,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"41,87 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":41.52,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"41,52 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":41.17,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"41,17 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":41.17,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"41,17 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":40.83,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"40,83 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":40.83,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"40,83 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":40.83,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"40,83 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":40.83,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"40,83 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":40.83,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"40,83 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":40.49,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"40,49 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":40.49,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"40,49 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":40.49,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"40,49 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":40.49,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"40,49 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":40.49,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"40,49 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":40.49,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"40,49 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":40.16,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"40,16 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":40.16,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"40,16 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":39.83,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"39,83 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":39.83,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"39,83 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":39.83,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"39,83 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":39.83,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"39,83 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":39.51,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"39,51 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":40.83,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"40,83 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":38.58,"retailPrice":69.99,"fRetailPrice":"69,99 €","fWholesalePrice":"38,58 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":53.90,"retailPrice":76.99,"fRetailPrice":"$76.99","fWholesalePrice":"$53.90"}]},{"tierStem":"55","tierName":"Tier 55","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":52.50,"retailPrice":74.99,"fRetailPrice":"$74.99","fWholesalePrice":"$52.50"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":73.49,"retailPrice":104.99,"fRetailPrice":"$104.99","fWholesalePrice":"$73.49"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":909.30,"retailPrice":1299.00,"fRetailPrice":"$1,299.00","fWholesalePrice":"$909.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":76.36,"retailPrice":119.99,"fRetailPrice":"$119.99","fWholesalePrice":"$76.36"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":76.99,"retailPrice":109.99,"fRetailPrice":"$109.99","fWholesalePrice":"$76.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":6160.00,"retailPrice":8800.00000,"fRetailPrice":"¥8,800","fWholesalePrice":"¥6,160"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":334.80,"retailPrice":488.00,"fRetailPrice":"¥488.00","fWholesalePrice":"¥334.80"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":73.49,"retailPrice":104.98,"fRetailPrice":"S$ 104.98","fWholesalePrice":"S$ 73.49"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":411.60,"retailPrice":588.00,"fRetailPrice":"HK$ 588.00","fWholesalePrice":"HK$ 411.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":1533.00,"retailPrice":2190.00,"fRetailPrice":"NT$ 2,190","fWholesalePrice":"NT$ 1,533"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":769300.00,"retailPrice":1099000.00,"fRetailPrice":"Rp 1,099juta","fWholesalePrice":"Rp 769.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":3220.00,"retailPrice":4600.00,"fRetailPrice":"Rs 4,600","fWholesalePrice":"Rs 3,220"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":4053.00,"retailPrice":5790.00,"fRetailPrice":"5 790 р.","fWholesalePrice":"4 053 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":139.99,"retailPrice":199.99,"fRetailPrice":"199,99 TL","fWholesalePrice":"139,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":209.93,"retailPrice":299.90,"fRetailPrice":"NIS 299.90","fWholesalePrice":"NIS 209.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":921.05,"retailPrice":1499.99,"fRetailPrice":"R1,499.99","fWholesalePrice":"R921.05"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":195.99,"retailPrice":279.99,"fRetailPrice":"SR 279.99","fWholesalePrice":"SR 195.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":195.99,"retailPrice":279.99,"fRetailPrice":"AED 279.99","fWholesalePrice":"AED 195.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":32.08,"retailPrice":54.99,"fRetailPrice":"£54.99","fWholesalePrice":"£32.08"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":324.24,"retailPrice":579.00,"fRetailPrice":"579,00 kr","fWholesalePrice":"324,24 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":445.20,"retailPrice":795.00,"fRetailPrice":"795,00 kr","fWholesalePrice":"445,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":48.61,"retailPrice":75.00,"fRetailPrice":"CHF 75.00","fWholesalePrice":"CHF 48.61"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":447.44,"retailPrice":799.00,"fRetailPrice":"799,00 kr","fWholesalePrice":"447,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":44.87,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"44,87 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":44.49,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"44,49 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":44.11,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"44,11 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":44.11,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"44,11 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":43.74,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"43,74 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":43.74,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"43,74 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":43.74,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"43,74 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":43.74,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"43,74 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":43.74,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"43,74 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":43.38,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"43,38 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":43.38,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"43,38 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":43.38,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"43,38 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":43.38,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"43,38 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":43.38,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"43,38 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":43.38,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"43,38 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":43.03,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"43,03 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":43.03,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"43,03 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":42.68,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"42,68 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":42.68,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"42,68 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":42.68,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"42,68 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":42.68,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"42,68 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":42.33,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"42,33 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":43.74,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"43,74 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":41.33,"retailPrice":74.99,"fRetailPrice":"74,99 €","fWholesalePrice":"41,33 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":57.75,"retailPrice":82.49,"fRetailPrice":"$82.49","fWholesalePrice":"$57.75"}]},{"tierStem":"56","tierName":"Tier 56","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":56.00,"retailPrice":79.99,"fRetailPrice":"$79.99","fWholesalePrice":"$56.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":76.99,"retailPrice":109.99,"fRetailPrice":"$109.99","fWholesalePrice":"$76.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":979.30,"retailPrice":1399.00,"fRetailPrice":"$1,399.00","fWholesalePrice":"$979.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":79.54,"retailPrice":124.99,"fRetailPrice":"$124.99","fWholesalePrice":"$79.54"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":83.99,"retailPrice":119.99,"fRetailPrice":"$119.99","fWholesalePrice":"$83.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":6860.00,"retailPrice":9800.00000,"fRetailPrice":"¥9,800","fWholesalePrice":"¥6,860"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":355.39,"retailPrice":518.00,"fRetailPrice":"¥518.00","fWholesalePrice":"¥355.39"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":76.29,"retailPrice":108.98,"fRetailPrice":"S$ 108.98","fWholesalePrice":"S$ 76.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":432.60,"retailPrice":618.00,"fRetailPrice":"HK$ 618.00","fWholesalePrice":"HK$ 432.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":1673.00,"retailPrice":2390.00,"fRetailPrice":"NT$ 2,390","fWholesalePrice":"NT$ 1,673"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":839300.00,"retailPrice":1199000.00,"fRetailPrice":"Rp 1,199juta","fWholesalePrice":"Rp 839.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":3430.00,"retailPrice":4900.00,"fRetailPrice":"Rs 4,900","fWholesalePrice":"Rs 3,430"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":4193.00,"retailPrice":5990.00,"fRetailPrice":"5 990 р.","fWholesalePrice":"4 193 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":146.99,"retailPrice":209.99,"fRetailPrice":"209,99 TL","fWholesalePrice":"146,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":223.93,"retailPrice":319.90,"fRetailPrice":"NIS 319.90","fWholesalePrice":"NIS 223.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":982.45,"retailPrice":1599.99,"fRetailPrice":"R1,599.99","fWholesalePrice":"R982.45"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":209.99,"retailPrice":299.99,"fRetailPrice":"SR 299.99","fWholesalePrice":"SR 209.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":209.99,"retailPrice":299.99,"fRetailPrice":"AED 299.99","fWholesalePrice":"AED 209.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":34.99,"retailPrice":59.99,"fRetailPrice":"£59.99","fWholesalePrice":"£34.99"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":335.44,"retailPrice":599.00,"fRetailPrice":"599,00 kr","fWholesalePrice":"335,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":475.44,"retailPrice":849.00,"fRetailPrice":"849,00 kr","fWholesalePrice":"475,44 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":51.85,"retailPrice":80.00,"fRetailPrice":"CHF 80.00","fWholesalePrice":"CHF 51.85"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":475.44,"retailPrice":849.00,"fRetailPrice":"849,00 kr","fWholesalePrice":"475,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":47.86,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"47,86 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":47.45,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"47,45 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":47.05,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"47,05 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":47.05,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"47,05 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":46.66,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"46,66 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":46.66,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"46,66 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":46.66,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"46,66 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":46.66,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"46,66 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":46.66,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"46,66 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":46.28,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"46,28 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":46.28,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"46,28 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":46.28,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"46,28 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":46.28,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"46,28 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":46.28,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"46,28 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":46.28,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"46,28 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":45.90,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"45,90 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":45.90,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"45,90 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":45.52,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"45,52 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":45.52,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"45,52 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":45.52,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"45,52 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":45.52,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"45,52 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":45.16,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"45,16 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":46.66,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"46,66 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":44.09,"retailPrice":79.99,"fRetailPrice":"79,99 €","fWholesalePrice":"44,09 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":61.60,"retailPrice":87.99,"fRetailPrice":"$87.99","fWholesalePrice":"$61.60"}]},{"tierStem":"57","tierName":"Tier 57","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":59.50,"retailPrice":84.99,"fRetailPrice":"$84.99","fWholesalePrice":"$59.50"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":80.49,"retailPrice":114.99,"fRetailPrice":"$114.99","fWholesalePrice":"$80.49"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":1049.30,"retailPrice":1499.00,"fRetailPrice":"$1,499.00","fWholesalePrice":"$1,049.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":82.72,"retailPrice":129.99,"fRetailPrice":"$129.99","fWholesalePrice":"$82.72"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":87.49,"retailPrice":124.99,"fRetailPrice":"$124.99","fWholesalePrice":"$87.49"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":7280.00,"retailPrice":10400.00000,"fRetailPrice":"¥10,400","fWholesalePrice":"¥7,280"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":375.97,"retailPrice":548.00,"fRetailPrice":"¥548.00","fWholesalePrice":"¥375.97"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":83.29,"retailPrice":118.98,"fRetailPrice":"S$ 118.98","fWholesalePrice":"S$ 83.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":453.60,"retailPrice":648.00,"fRetailPrice":"HK$ 648.00","fWholesalePrice":"HK$ 453.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":1743.00,"retailPrice":2490.00,"fRetailPrice":"NT$ 2,490","fWholesalePrice":"NT$ 1,743"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":874300.00,"retailPrice":1249000.00,"fRetailPrice":"Rp 1,249juta","fWholesalePrice":"Rp 874.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":3640.00,"retailPrice":5200.00,"fRetailPrice":"Rs 5,200","fWholesalePrice":"Rs 3,640"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":4543.00,"retailPrice":6490.00,"fRetailPrice":"6 490 р.","fWholesalePrice":"4 543 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":160.99,"retailPrice":229.99,"fRetailPrice":"229,99 TL","fWholesalePrice":"160,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":237.93,"retailPrice":339.90,"fRetailPrice":"NIS 339.90","fWholesalePrice":"NIS 237.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":1043.85,"retailPrice":1699.99,"fRetailPrice":"R1,699.99","fWholesalePrice":"R1,043.85"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":223.99,"retailPrice":319.99,"fRetailPrice":"SR 319.99","fWholesalePrice":"SR 223.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":223.99,"retailPrice":319.99,"fRetailPrice":"AED 319.99","fWholesalePrice":"AED 223.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":37.91,"retailPrice":64.99,"fRetailPrice":"£64.99","fWholesalePrice":"£37.91"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":363.44,"retailPrice":649.00,"fRetailPrice":"649,00 kr","fWholesalePrice":"363,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":501.20,"retailPrice":895.00,"fRetailPrice":"895,00 kr","fWholesalePrice":"501,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":55.09,"retailPrice":85.00,"fRetailPrice":"CHF 85.00","fWholesalePrice":"CHF 55.09"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":503.44,"retailPrice":899.00,"fRetailPrice":"899,00 kr","fWholesalePrice":"503,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":50.85,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"50,85 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":50.42,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"50,42 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":49.99,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"49,99 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":49.99,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"49,99 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":49.58,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"49,58 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":49.58,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"49,58 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":49.58,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"49,58 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":49.58,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"49,58 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":49.58,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"49,58 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":49.17,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"49,17 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":49.17,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"49,17 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":49.17,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"49,17 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":49.17,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"49,17 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":49.17,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"49,17 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":49.17,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"49,17 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":48.76,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"48,76 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":48.76,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"48,76 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":48.37,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"48,37 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":48.37,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"48,37 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":48.37,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"48,37 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":48.37,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"48,37 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":47.98,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"47,98 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":49.58,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"49,58 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":46.84,"retailPrice":84.99,"fRetailPrice":"84,99 €","fWholesalePrice":"46,84 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":65.45,"retailPrice":93.49,"fRetailPrice":"$93.49","fWholesalePrice":"$65.45"}]},{"tierStem":"58","tierName":"Tier 58","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":63.00,"retailPrice":89.99,"fRetailPrice":"$89.99","fWholesalePrice":"$63.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":83.99,"retailPrice":119.99,"fRetailPrice":"$119.99","fWholesalePrice":"$83.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":1119.30,"retailPrice":1599.00,"fRetailPrice":"$1,599.00","fWholesalePrice":"$1,119.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":89.08,"retailPrice":139.99,"fRetailPrice":"$139.99","fWholesalePrice":"$89.08"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":90.99,"retailPrice":129.99,"fRetailPrice":"$129.99","fWholesalePrice":"$90.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":7560.00,"retailPrice":10800.00000,"fRetailPrice":"¥10,800","fWholesalePrice":"¥7,560"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":403.41,"retailPrice":588.00,"fRetailPrice":"¥588.00","fWholesalePrice":"¥403.41"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":90.29,"retailPrice":128.98,"fRetailPrice":"S$ 128.98","fWholesalePrice":"S$ 90.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":481.60,"retailPrice":688.00,"fRetailPrice":"HK$ 688.00","fWholesalePrice":"HK$ 481.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":1883.00,"retailPrice":2690.00,"fRetailPrice":"NT$ 2,690","fWholesalePrice":"NT$ 1,883"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":909300.00,"retailPrice":1299000.00,"fRetailPrice":"Rp 1,299juta","fWholesalePrice":"Rp 909.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":3850.00,"retailPrice":5500.00,"fRetailPrice":"Rs 5,500","fWholesalePrice":"Rs 3,850"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":4893.00,"retailPrice":6990.00,"fRetailPrice":"6 990 р.","fWholesalePrice":"4 893 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":167.99,"retailPrice":239.99,"fRetailPrice":"239,99 TL","fWholesalePrice":"167,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":251.93,"retailPrice":359.90,"fRetailPrice":"NIS 359.90","fWholesalePrice":"NIS 251.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":1105.26,"retailPrice":1799.99,"fRetailPrice":"R1,799.99","fWholesalePrice":"R1,105.26"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":230.99,"retailPrice":329.99,"fRetailPrice":"SR 329.99","fWholesalePrice":"SR 230.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":230.99,"retailPrice":329.99,"fRetailPrice":"AED 329.99","fWholesalePrice":"AED 230.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":40.83,"retailPrice":69.99,"fRetailPrice":"£69.99","fWholesalePrice":"£40.83"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":391.44,"retailPrice":699.00,"fRetailPrice":"699,00 kr","fWholesalePrice":"391,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":531.44,"retailPrice":949.00,"fRetailPrice":"949,00 kr","fWholesalePrice":"531,44 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":58.33,"retailPrice":90.00,"fRetailPrice":"CHF 90.00","fWholesalePrice":"CHF 58.33"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":531.44,"retailPrice":949.00,"fRetailPrice":"949,00 kr","fWholesalePrice":"531,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":53.84,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"53,84 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":53.38,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"53,38 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":52.94,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"52,94 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":52.94,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"52,94 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":52.49,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"52,49 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":52.49,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"52,49 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":52.49,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"52,49 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":52.49,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"52,49 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":52.49,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"52,49 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":52.06,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"52,06 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":52.06,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"52,06 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":52.06,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"52,06 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":52.06,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"52,06 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":52.06,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"52,06 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":52.06,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"52,06 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":51.63,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"51,63 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":51.63,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"51,63 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":51.21,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"51,21 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":51.21,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"51,21 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":51.21,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"51,21 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":51.21,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"51,21 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":50.80,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"50,80 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":52.49,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"52,49 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":49.60,"retailPrice":89.99,"fRetailPrice":"89,99 €","fWholesalePrice":"49,60 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":69.30,"retailPrice":98.99,"fRetailPrice":"$98.99","fWholesalePrice":"$69.30"}]},{"tierStem":"59","tierName":"Tier 59","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":66.50,"retailPrice":94.99,"fRetailPrice":"$94.99","fWholesalePrice":"$66.50"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":90.99,"retailPrice":129.99,"fRetailPrice":"$129.99","fWholesalePrice":"$90.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":1154.30,"retailPrice":1649.00,"fRetailPrice":"$1,649.00","fWholesalePrice":"$1,154.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":95.45,"retailPrice":149.99,"fRetailPrice":"$149.99","fWholesalePrice":"$95.45"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":97.99,"retailPrice":139.99,"fRetailPrice":"$139.99","fWholesalePrice":"$97.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":7980.00,"retailPrice":11400.00000,"fRetailPrice":"¥11,400","fWholesalePrice":"¥7,980"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":423.99,"retailPrice":618.00,"fRetailPrice":"¥618.00","fWholesalePrice":"¥423.99"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":97.29,"retailPrice":138.98,"fRetailPrice":"S$ 138.98","fWholesalePrice":"S$ 97.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":523.60,"retailPrice":748.00,"fRetailPrice":"HK$ 748.00","fWholesalePrice":"HK$ 523.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":1953.00,"retailPrice":2790.00,"fRetailPrice":"NT$ 2,790","fWholesalePrice":"NT$ 1,953"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":979300.00,"retailPrice":1399000.00,"fRetailPrice":"Rp 1,399juta","fWholesalePrice":"Rp 979.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":4130.00,"retailPrice":5900.00,"fRetailPrice":"Rs 5,900","fWholesalePrice":"Rs 4,130"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":5103.00,"retailPrice":7290.00,"fRetailPrice":"7 290 р.","fWholesalePrice":"5 103 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":174.99,"retailPrice":249.99,"fRetailPrice":"249,99 TL","fWholesalePrice":"174,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":265.93,"retailPrice":379.90,"fRetailPrice":"NIS 379.90","fWholesalePrice":"NIS 265.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":1166.66,"retailPrice":1899.99,"fRetailPrice":"R1,899.99","fWholesalePrice":"R1,166.66"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":244.99,"retailPrice":349.99,"fRetailPrice":"SR 349.99","fWholesalePrice":"SR 244.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":244.99,"retailPrice":349.99,"fRetailPrice":"AED 349.99","fWholesalePrice":"AED 244.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":43.74,"retailPrice":74.99,"fRetailPrice":"£74.99","fWholesalePrice":"£43.74"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":419.44,"retailPrice":749.00,"fRetailPrice":"749,00 kr","fWholesalePrice":"419,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":557.20,"retailPrice":995.00,"fRetailPrice":"995,00 kr","fWholesalePrice":"557,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":61.57,"retailPrice":95.00,"fRetailPrice":"CHF 95.00","fWholesalePrice":"CHF 61.57"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":559.44,"retailPrice":999.00,"fRetailPrice":"999,00 kr","fWholesalePrice":"559,44 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":56.83,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"56,83 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":56.35,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"56,35 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":55.88,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"55,88 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":55.88,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"55,88 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":55.41,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"55,41 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":55.41,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"55,41 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":55.41,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"55,41 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":55.41,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"55,41 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":55.41,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"55,41 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":54.95,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"54,95 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":54.95,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"54,95 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":54.95,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"54,95 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":54.95,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"54,95 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":54.95,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"54,95 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":54.95,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"54,95 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":54.50,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"54,50 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":54.50,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"54,50 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":54.06,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"54,06 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":54.06,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"54,06 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":54.06,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"54,06 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":54.06,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"54,06 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":53.62,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"53,62 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":55.41,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"55,41 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":52.36,"retailPrice":94.99,"fRetailPrice":"94,99 €","fWholesalePrice":"52,36 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":73.15,"retailPrice":104.49,"fRetailPrice":"$104.49","fWholesalePrice":"$73.15"}]},{"tierStem":"60","tierName":"Tier 60","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":70.00,"retailPrice":99.99,"fRetailPrice":"$99.99","fWholesalePrice":"$70.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":97.99,"retailPrice":139.99,"fRetailPrice":"$139.99","fWholesalePrice":"$97.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":1189.30,"retailPrice":1699.00,"fRetailPrice":"$1,699.00","fWholesalePrice":"$1,189.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":101.81,"retailPrice":159.99,"fRetailPrice":"$159.99","fWholesalePrice":"$101.81"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":104.99,"retailPrice":149.99,"fRetailPrice":"$149.99","fWholesalePrice":"$104.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":8260.00,"retailPrice":11800.00000,"fRetailPrice":"¥11,800","fWholesalePrice":"¥8,260"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":444.58,"retailPrice":648.00,"fRetailPrice":"¥648.00","fWholesalePrice":"¥444.58"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":104.29,"retailPrice":148.98,"fRetailPrice":"S$ 148.98","fWholesalePrice":"S$ 104.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":551.60,"retailPrice":788.00,"fRetailPrice":"HK$ 788.00","fWholesalePrice":"HK$ 551.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":2093.00,"retailPrice":2990.00,"fRetailPrice":"NT$ 2,990","fWholesalePrice":"NT$ 2,093"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":1049300.00,"retailPrice":1499000.00,"fRetailPrice":"Rp 1,499juta","fWholesalePrice":"Rp 1.049.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":4340.00,"retailPrice":6200.00,"fRetailPrice":"Rs 6,200","fWholesalePrice":"Rs 4,340"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":5243.00,"retailPrice":7490.00,"fRetailPrice":"7 490 р.","fWholesalePrice":"5 243 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":188.99,"retailPrice":269.99,"fRetailPrice":"269,99 TL","fWholesalePrice":"188,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":279.93,"retailPrice":399.90,"fRetailPrice":"NIS 399.90","fWholesalePrice":"NIS 279.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":1228.06,"retailPrice":1999.99,"fRetailPrice":"R1,999.99","fWholesalePrice":"R1,228.06"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":258.99,"retailPrice":369.99,"fRetailPrice":"SR 369.99","fWholesalePrice":"SR 258.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":258.99,"retailPrice":369.99,"fRetailPrice":"AED 369.99","fWholesalePrice":"AED 258.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":46.66,"retailPrice":79.99,"fRetailPrice":"£79.99","fWholesalePrice":"£46.66"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":447.44,"retailPrice":799.00,"fRetailPrice":"799,00 kr","fWholesalePrice":"447,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":613.20,"retailPrice":1095.00,"fRetailPrice":"1.095,00 kr","fWholesalePrice":"613,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":64.81,"retailPrice":100.00,"fRetailPrice":"CHF 100.00","fWholesalePrice":"CHF 64.81"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":610.40,"retailPrice":1090.00,"fRetailPrice":"1.090,00 kr","fWholesalePrice":"610,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":59.82,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"59,82 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":59.32,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"59,32 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":58.82,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"58,82 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":58.82,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"58,82 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":58.33,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"58,33 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":58.33,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"58,33 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":58.33,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"58,33 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":58.33,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"58,33 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":58.33,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"58,33 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":57.85,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"57,85 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":57.85,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"57,85 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":57.85,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"57,85 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":57.85,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"57,85 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":57.85,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"57,85 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":57.85,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"57,85 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":57.37,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"57,37 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":57.37,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"57,37 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":56.90,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"56,90 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":56.90,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"56,90 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":56.90,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"56,90 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":56.90,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"56,90 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":56.45,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"56,45 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":58.33,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"58,33 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":55.11,"retailPrice":99.99,"fRetailPrice":"99,99 €","fWholesalePrice":"55,11 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":77.00,"retailPrice":109.99,"fRetailPrice":"$109.99","fWholesalePrice":"$77.00"}]},{"tierStem":"61","tierName":"Tier 61","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":77.00,"retailPrice":109.99,"fRetailPrice":"$109.99","fWholesalePrice":"$77.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":104.99,"retailPrice":149.99,"fRetailPrice":"$149.99","fWholesalePrice":"$104.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":1329.30,"retailPrice":1899.00,"fRetailPrice":"$1,899.00","fWholesalePrice":"$1,329.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":108.18,"retailPrice":169.99,"fRetailPrice":"$169.99","fWholesalePrice":"$108.18"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":111.99,"retailPrice":159.99,"fRetailPrice":"$159.99","fWholesalePrice":"$111.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":8960.00,"retailPrice":12800.00000,"fRetailPrice":"¥12,800","fWholesalePrice":"¥8,960"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":478.88,"retailPrice":698.00,"fRetailPrice":"¥698.00","fWholesalePrice":"¥478.88"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":111.29,"retailPrice":158.98,"fRetailPrice":"S$ 158.98","fWholesalePrice":"S$ 111.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":593.60,"retailPrice":848.00,"fRetailPrice":"HK$ 848.00","fWholesalePrice":"HK$ 593.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":2303.00,"retailPrice":3290.00,"fRetailPrice":"NT$ 3,290","fWholesalePrice":"NT$ 2,303"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":1119300.00,"retailPrice":1599000.00,"fRetailPrice":"Rp 1,599juta","fWholesalePrice":"Rp 1.119.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":4830.00,"retailPrice":6900.00,"fRetailPrice":"Rs 6,900","fWholesalePrice":"Rs 4,830"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":5943.00,"retailPrice":8490.00,"fRetailPrice":"8 490 р.","fWholesalePrice":"5 943 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":209.99,"retailPrice":299.99,"fRetailPrice":"299,99 TL","fWholesalePrice":"209,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":307.93,"retailPrice":439.90,"fRetailPrice":"NIS 439.90","fWholesalePrice":"NIS 307.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":1350.87,"retailPrice":2199.99,"fRetailPrice":"R2,199.99","fWholesalePrice":"R1,350.87"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":279.99,"retailPrice":399.99,"fRetailPrice":"SR 399.99","fWholesalePrice":"SR 279.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":279.99,"retailPrice":399.99,"fRetailPrice":"AED 399.99","fWholesalePrice":"AED 279.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":49.58,"retailPrice":84.99,"fRetailPrice":"£84.99","fWholesalePrice":"£49.58"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":475.44,"retailPrice":849.00,"fRetailPrice":"849,00 kr","fWholesalePrice":"475,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":669.20,"retailPrice":1195.00,"fRetailPrice":"1.195,00 kr","fWholesalePrice":"669,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":71.30,"retailPrice":110.00,"fRetailPrice":"CHF 110.00","fWholesalePrice":"CHF 71.30"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":666.40,"retailPrice":1190.00,"fRetailPrice":"1.190,00 kr","fWholesalePrice":"666,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":65.81,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"65,81 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":65.25,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"65,25 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":64.70,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"64,70 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":64.70,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"64,70 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":64.16,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"64,16 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":64.16,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"64,16 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":64.16,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"64,16 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":64.16,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"64,16 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":64.16,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"64,16 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":63.63,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"63,63 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":63.63,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"63,63 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":63.63,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"63,63 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":63.63,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"63,63 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":63.63,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"63,63 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":63.63,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"63,63 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":63.11,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"63,11 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":63.11,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"63,11 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":62.60,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"62,60 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":62.60,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"62,60 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":62.60,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"62,60 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":62.60,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"62,60 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":62.09,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"62,09 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":64.16,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"64,16 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":60.62,"retailPrice":109.99,"fRetailPrice":"109,99 €","fWholesalePrice":"60,62 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":84.70,"retailPrice":120.99,"fRetailPrice":"$120.99","fWholesalePrice":"$84.70"}]},{"tierStem":"62","tierName":"Tier 62","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":84.00,"retailPrice":119.99,"fRetailPrice":"$119.99","fWholesalePrice":"$84.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":111.99,"retailPrice":159.99,"fRetailPrice":"$159.99","fWholesalePrice":"$111.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":1469.30,"retailPrice":2099.00,"fRetailPrice":"$2,099.00","fWholesalePrice":"$1,469.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":114.54,"retailPrice":179.99,"fRetailPrice":"$179.99","fWholesalePrice":"$114.54"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":125.99,"retailPrice":179.99,"fRetailPrice":"$179.99","fWholesalePrice":"$125.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":9660.00,"retailPrice":13800.00000,"fRetailPrice":"¥13,800","fWholesalePrice":"¥9,660"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":547.49,"retailPrice":798.00,"fRetailPrice":"¥798.00","fWholesalePrice":"¥547.49"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":118.29,"retailPrice":168.98,"fRetailPrice":"S$ 168.98","fWholesalePrice":"S$ 118.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":621.60,"retailPrice":888.00,"fRetailPrice":"HK$ 888.00","fWholesalePrice":"HK$ 621.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":2513.00,"retailPrice":3590.00,"fRetailPrice":"NT$ 3,590","fWholesalePrice":"NT$ 2,513"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":1259300.00,"retailPrice":1799000.00,"fRetailPrice":"Rp 1,799juta","fWholesalePrice":"Rp 1.259.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":5250.00,"retailPrice":7500.00,"fRetailPrice":"Rs 7,500","fWholesalePrice":"Rs 5,250"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":6293.00,"retailPrice":8990.00,"fRetailPrice":"8 990 р.","fWholesalePrice":"6 293 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":230.99,"retailPrice":329.99,"fRetailPrice":"329,99 TL","fWholesalePrice":"230,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":335.93,"retailPrice":479.90,"fRetailPrice":"NIS 479.90","fWholesalePrice":"NIS 335.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":1412.27,"retailPrice":2299.99,"fRetailPrice":"R2,299.99","fWholesalePrice":"R1,412.27"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":300.99,"retailPrice":429.99,"fRetailPrice":"SR 429.99","fWholesalePrice":"SR 300.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":300.99,"retailPrice":429.99,"fRetailPrice":"AED 429.99","fWholesalePrice":"AED 300.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":52.49,"retailPrice":89.99,"fRetailPrice":"£89.99","fWholesalePrice":"£52.49"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":503.44,"retailPrice":899.00,"fRetailPrice":"899,00 kr","fWholesalePrice":"503,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":725.20,"retailPrice":1295.00,"fRetailPrice":"1.295,00 kr","fWholesalePrice":"725,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":77.78,"retailPrice":120.00,"fRetailPrice":"CHF 120.00","fWholesalePrice":"CHF 77.78"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":700.00,"retailPrice":1250.00,"fRetailPrice":"1.250,00 kr","fWholesalePrice":"700,00 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":71.79,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"71,79 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":71.18,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"71,18 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":70.58,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"70,58 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":70.58,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"70,58 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":69.99,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"69,99 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":69.99,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"69,99 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":69.99,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"69,99 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":69.99,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"69,99 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":69.99,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"69,99 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":69.42,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"69,42 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":69.42,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"69,42 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":69.42,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"69,42 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":69.42,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"69,42 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":69.42,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"69,42 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":69.42,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"69,42 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":68.85,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"68,85 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":68.85,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"68,85 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":68.29,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"68,29 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":68.29,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"68,29 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":68.29,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"68,29 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":68.29,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"68,29 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":67.74,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"67,74 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":69.99,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"69,99 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":66.14,"retailPrice":119.99,"fRetailPrice":"119,99 €","fWholesalePrice":"66,14 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":92.40,"retailPrice":131.99,"fRetailPrice":"$131.99","fWholesalePrice":"$92.40"}]},{"tierStem":"63","tierName":"Tier 63","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":87.50,"retailPrice":124.99,"fRetailPrice":"$124.99","fWholesalePrice":"$87.50"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":118.99,"retailPrice":169.99,"fRetailPrice":"$169.99","fWholesalePrice":"$118.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":1539.30,"retailPrice":2199.00,"fRetailPrice":"$2,199.00","fWholesalePrice":"$1,539.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":120.90,"retailPrice":189.99,"fRetailPrice":"$189.99","fWholesalePrice":"$120.90"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":132.99,"retailPrice":189.99,"fRetailPrice":"$189.99","fWholesalePrice":"$132.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":10360.00,"retailPrice":14800.00000,"fRetailPrice":"¥14,800","fWholesalePrice":"¥10,360"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":561.21,"retailPrice":818.00,"fRetailPrice":"¥818.00","fWholesalePrice":"¥561.21"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":125.29,"retailPrice":178.98,"fRetailPrice":"S$ 178.98","fWholesalePrice":"S$ 125.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":691.60,"retailPrice":988.00,"fRetailPrice":"HK$ 988.00","fWholesalePrice":"HK$ 691.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":2653.00,"retailPrice":3790.00,"fRetailPrice":"NT$ 3,790","fWholesalePrice":"NT$ 2,653"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":1294300.00,"retailPrice":1849000.00,"fRetailPrice":"Rp 1,849juta","fWholesalePrice":"Rp 1.294.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":5390.00,"retailPrice":7700.00,"fRetailPrice":"Rs 7,700","fWholesalePrice":"Rs 5,390"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":6643.00,"retailPrice":9490.00,"fRetailPrice":"9 490 р.","fWholesalePrice":"6 643 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":237.99,"retailPrice":339.99,"fRetailPrice":"339,99 TL","fWholesalePrice":"237,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":349.93,"retailPrice":499.90,"fRetailPrice":"NIS 499.90","fWholesalePrice":"NIS 349.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":1473.68,"retailPrice":2399.99,"fRetailPrice":"R2,399.99","fWholesalePrice":"R1,473.68"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":314.99,"retailPrice":449.99,"fRetailPrice":"SR 449.99","fWholesalePrice":"SR 314.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":314.99,"retailPrice":449.99,"fRetailPrice":"AED 449.99","fWholesalePrice":"AED 314.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":55.41,"retailPrice":94.99,"fRetailPrice":"£94.99","fWholesalePrice":"£55.41"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":531.44,"retailPrice":949.00,"fRetailPrice":"949,00 kr","fWholesalePrice":"531,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":755.44,"retailPrice":1349.00,"fRetailPrice":"1.349,00 kr","fWholesalePrice":"755,44 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":81.02,"retailPrice":125.00,"fRetailPrice":"CHF 125.00","fWholesalePrice":"CHF 81.02"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":722.40,"retailPrice":1290.00,"fRetailPrice":"1.290,00 kr","fWholesalePrice":"722,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":74.78,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"74,78 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":74.15,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"74,15 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":73.52,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"73,52 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":73.52,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"73,52 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":72.91,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"72,91 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":72.91,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"72,91 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":72.91,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"72,91 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":72.91,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"72,91 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":72.91,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"72,91 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":72.31,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"72,31 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":72.31,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"72,31 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":72.31,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"72,31 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":72.31,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"72,31 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":72.31,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"72,31 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":72.31,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"72,31 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":71.72,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"71,72 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":71.72,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"71,72 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":71.13,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"71,13 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":71.13,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"71,13 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":71.13,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"71,13 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":71.13,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"71,13 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":70.56,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"70,56 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":72.91,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"72,91 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":68.89,"retailPrice":124.99,"fRetailPrice":"124,99 €","fWholesalePrice":"68,89 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":96.25,"retailPrice":137.49,"fRetailPrice":"$137.49","fWholesalePrice":"$96.25"}]},{"tierStem":"64","tierName":"Tier 64","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":91.00,"retailPrice":129.99,"fRetailPrice":"$129.99","fWholesalePrice":"$91.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":125.99,"retailPrice":179.99,"fRetailPrice":"$179.99","fWholesalePrice":"$125.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":1609.30,"retailPrice":2299.00,"fRetailPrice":"$2,299.00","fWholesalePrice":"$1,609.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":127.27,"retailPrice":199.99,"fRetailPrice":"$199.99","fWholesalePrice":"$127.27"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":139.99,"retailPrice":199.99,"fRetailPrice":"$199.99","fWholesalePrice":"$139.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":11060.00,"retailPrice":15800.00000,"fRetailPrice":"¥15,800","fWholesalePrice":"¥11,060"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":581.79,"retailPrice":848.00,"fRetailPrice":"¥848.00","fWholesalePrice":"¥581.79"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":132.29,"retailPrice":188.98,"fRetailPrice":"S$ 188.98","fWholesalePrice":"S$ 132.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":733.60,"retailPrice":1048.00,"fRetailPrice":"HK$ 1,048.00","fWholesalePrice":"HK$ 733.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":2723.00,"retailPrice":3890.00,"fRetailPrice":"NT$ 3,890","fWholesalePrice":"NT$ 2,723"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":1329300.00,"retailPrice":1899000.00,"fRetailPrice":"Rp 1,899juta","fWholesalePrice":"Rp 1.329.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":5530.00,"retailPrice":7900.00,"fRetailPrice":"Rs 7,900","fWholesalePrice":"Rs 5,530"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":6993.00,"retailPrice":9990.00,"fRetailPrice":"9 990 р.","fWholesalePrice":"6 993 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":244.99,"retailPrice":349.99,"fRetailPrice":"349,99 TL","fWholesalePrice":"244,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":363.93,"retailPrice":519.90,"fRetailPrice":"NIS 519.90","fWholesalePrice":"NIS 363.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":1535.08,"retailPrice":2499.99,"fRetailPrice":"R2,499.99","fWholesalePrice":"R1,535.08"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":335.99,"retailPrice":479.99,"fRetailPrice":"SR 479.99","fWholesalePrice":"SR 335.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":335.99,"retailPrice":479.99,"fRetailPrice":"AED 479.99","fWholesalePrice":"AED 335.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":58.33,"retailPrice":99.99,"fRetailPrice":"£99.99","fWholesalePrice":"£58.33"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":559.44,"retailPrice":999.00,"fRetailPrice":"999,00 kr","fWholesalePrice":"559,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":781.20,"retailPrice":1395.00,"fRetailPrice":"1.395,00 kr","fWholesalePrice":"781,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":84.26,"retailPrice":130.00,"fRetailPrice":"CHF 130.00","fWholesalePrice":"CHF 84.26"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":778.40,"retailPrice":1390.00,"fRetailPrice":"1.390,00 kr","fWholesalePrice":"778,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":77.77,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"77,77 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":77.11,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"77,11 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":76.46,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"76,46 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":76.46,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"76,46 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":75.83,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"75,83 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":75.83,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"75,83 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":75.83,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"75,83 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":75.83,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"75,83 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":75.83,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"75,83 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":75.20,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"75,20 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":75.20,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"75,20 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":75.20,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"75,20 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":75.20,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"75,20 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":75.20,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"75,20 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":75.20,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"75,20 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":74.58,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"74,58 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":74.58,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"74,58 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":73.98,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"73,98 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":73.98,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"73,98 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":73.98,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"73,98 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":73.98,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"73,98 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":73.38,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"73,38 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":75.83,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"75,83 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":71.65,"retailPrice":129.99,"fRetailPrice":"129,99 €","fWholesalePrice":"71,65 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":100.10,"retailPrice":142.99,"fRetailPrice":"$142.99","fWholesalePrice":"$100.10"}]},{"tierStem":"65","tierName":"Tier 65","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":98.00,"retailPrice":139.99,"fRetailPrice":"$139.99","fWholesalePrice":"$98.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":139.99,"retailPrice":199.99,"fRetailPrice":"$199.99","fWholesalePrice":"$139.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":1679.30,"retailPrice":2399.00,"fRetailPrice":"$2,399.00","fWholesalePrice":"$1,679.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":139.99,"retailPrice":219.99,"fRetailPrice":"$219.99","fWholesalePrice":"$139.99"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":146.99,"retailPrice":209.99,"fRetailPrice":"$209.99","fWholesalePrice":"$146.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":11760.00,"retailPrice":16800.00000,"fRetailPrice":"¥16,800","fWholesalePrice":"¥11,760"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":616.09,"retailPrice":898.00,"fRetailPrice":"¥898.00","fWholesalePrice":"¥616.09"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":139.29,"retailPrice":198.98,"fRetailPrice":"S$ 198.98","fWholesalePrice":"S$ 139.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":761.60,"retailPrice":1088.00,"fRetailPrice":"HK$ 1,088.00","fWholesalePrice":"HK$ 761.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":2933.00,"retailPrice":4190.00,"fRetailPrice":"NT$ 4,190","fWholesalePrice":"NT$ 2,933"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":1399300.00,"retailPrice":1999000.00,"fRetailPrice":"Rp 1,999juta","fWholesalePrice":"Rp 1.399.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":6090.00,"retailPrice":8700.00,"fRetailPrice":"Rs 8,700","fWholesalePrice":"Rs 6,090"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":7693.00,"retailPrice":10990.00,"fRetailPrice":"10 990 р.","fWholesalePrice":"7 693 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":265.99,"retailPrice":379.99,"fRetailPrice":"379,99 TL","fWholesalePrice":"265,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":391.93,"retailPrice":559.90,"fRetailPrice":"NIS 559.90","fWholesalePrice":"NIS 391.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":1657.89,"retailPrice":2699.99,"fRetailPrice":"R2,699.99","fWholesalePrice":"R1,657.89"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":349.99,"retailPrice":499.99,"fRetailPrice":"SR 499.99","fWholesalePrice":"SR 349.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":349.99,"retailPrice":499.99,"fRetailPrice":"AED 499.99","fWholesalePrice":"AED 349.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":61.24,"retailPrice":104.99,"fRetailPrice":"£104.99","fWholesalePrice":"£61.24"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":615.44,"retailPrice":1099.00,"fRetailPrice":"1.099,00 kr","fWholesalePrice":"615,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":837.20,"retailPrice":1495.00,"fRetailPrice":"1.495,00 kr","fWholesalePrice":"837,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":90.74,"retailPrice":140.00,"fRetailPrice":"CHF 140.00","fWholesalePrice":"CHF 90.74"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":834.40,"retailPrice":1490.00,"fRetailPrice":"1.490,00 kr","fWholesalePrice":"834,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":83.75,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"83,75 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":83.04,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"83,04 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":82.35,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"82,35 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":82.35,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"82,35 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":81.66,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"81,66 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":81.66,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"81,66 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":81.66,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"81,66 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":81.66,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"81,66 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":81.66,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"81,66 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":80.99,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"80,99 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":80.99,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"80,99 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":80.99,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"80,99 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":80.99,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"80,99 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":80.99,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"80,99 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":80.99,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"80,99 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":80.32,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"80,32 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":80.32,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"80,32 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":79.67,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"79,67 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":79.67,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"79,67 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":79.67,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"79,67 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":79.67,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"79,67 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":79.03,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"79,03 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":81.66,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"81,66 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":77.16,"retailPrice":139.99,"fRetailPrice":"139,99 €","fWholesalePrice":"77,16 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":107.80,"retailPrice":153.99,"fRetailPrice":"$153.99","fWholesalePrice":"$107.80"}]},{"tierStem":"66","tierName":"Tier 66","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":105.00,"retailPrice":149.99,"fRetailPrice":"$149.99","fWholesalePrice":"$105.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":146.99,"retailPrice":209.99,"fRetailPrice":"$209.99","fWholesalePrice":"$146.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":1819.30,"retailPrice":2599.00,"fRetailPrice":"$2,599.00","fWholesalePrice":"$1,819.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":146.36,"retailPrice":229.99,"fRetailPrice":"$229.99","fWholesalePrice":"$146.36"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":153.99,"retailPrice":219.99,"fRetailPrice":"$219.99","fWholesalePrice":"$153.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":12460.00,"retailPrice":17800.00000,"fRetailPrice":"¥17,800","fWholesalePrice":"¥12,460"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":684.70,"retailPrice":998.00,"fRetailPrice":"¥998.00","fWholesalePrice":"¥684.70"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":153.29,"retailPrice":218.98,"fRetailPrice":"S$ 218.98","fWholesalePrice":"S$ 153.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":831.60,"retailPrice":1188.00,"fRetailPrice":"HK$ 1,188.00","fWholesalePrice":"HK$ 831.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":3143.00,"retailPrice":4490.00,"fRetailPrice":"NT$ 4,490","fWholesalePrice":"NT$ 3,143"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":1539300.00,"retailPrice":2199000.00,"fRetailPrice":"Rp 2,199juta","fWholesalePrice":"Rp 1.539.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":6440.00,"retailPrice":9200.00,"fRetailPrice":"Rs 9,200","fWholesalePrice":"Rs 6,440"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":8043.00,"retailPrice":11490.00,"fRetailPrice":"11 490 р.","fWholesalePrice":"8 043 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":279.99,"retailPrice":399.99,"fRetailPrice":"399,99 TL","fWholesalePrice":"279,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":419.93,"retailPrice":599.90,"fRetailPrice":"NIS 599.90","fWholesalePrice":"NIS 419.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":1780.70,"retailPrice":2899.99,"fRetailPrice":"R2,899.99","fWholesalePrice":"R1,780.70"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":384.99,"retailPrice":549.99,"fRetailPrice":"SR 549.99","fWholesalePrice":"SR 384.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":384.99,"retailPrice":549.99,"fRetailPrice":"AED 549.99","fWholesalePrice":"AED 384.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":64.16,"retailPrice":109.99,"fRetailPrice":"£109.99","fWholesalePrice":"£64.16"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":643.44,"retailPrice":1149.00,"fRetailPrice":"1.149,00 kr","fWholesalePrice":"643,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":893.20,"retailPrice":1595.00,"fRetailPrice":"1.595,00 kr","fWholesalePrice":"893,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":97.22,"retailPrice":150.00,"fRetailPrice":"CHF 150.00","fWholesalePrice":"CHF 97.22"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":890.40,"retailPrice":1590.00,"fRetailPrice":"1.590,00 kr","fWholesalePrice":"890,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":89.74,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"89,74 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":88.98,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"88,98 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":88.23,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"88,23 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":88.23,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"88,23 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":87.49,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"87,49 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":87.49,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"87,49 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":87.49,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"87,49 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":87.49,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"87,49 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":87.49,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"87,49 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":86.77,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"86,77 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":86.77,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"86,77 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":86.77,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"86,77 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":86.77,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"86,77 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":86.77,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"86,77 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":86.77,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"86,77 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":86.06,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"86,06 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":86.06,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"86,06 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":85.36,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"85,36 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":85.36,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"85,36 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":85.36,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"85,36 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":85.36,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"85,36 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":84.67,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"84,67 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":87.49,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"87,49 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":82.67,"retailPrice":149.99,"fRetailPrice":"149,99 €","fWholesalePrice":"82,67 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":115.50,"retailPrice":164.99,"fRetailPrice":"$164.99","fWholesalePrice":"$115.50"}]},{"tierStem":"67","tierName":"Tier 67","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":112.00,"retailPrice":159.99,"fRetailPrice":"$159.99","fWholesalePrice":"$112.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":153.99,"retailPrice":219.99,"fRetailPrice":"$219.99","fWholesalePrice":"$153.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":1959.30,"retailPrice":2799.00,"fRetailPrice":"$2,799.00","fWholesalePrice":"$1,959.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":159.08,"retailPrice":249.99,"fRetailPrice":"$249.99","fWholesalePrice":"$159.08"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":167.99,"retailPrice":239.99,"fRetailPrice":"$239.99","fWholesalePrice":"$167.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":13160.00,"retailPrice":18800.00000,"fRetailPrice":"¥18,800","fWholesalePrice":"¥13,160"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":719.00,"retailPrice":1048.00,"fRetailPrice":"¥1,048.00","fWholesalePrice":"¥719.00"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":160.29,"retailPrice":228.98,"fRetailPrice":"S$ 228.98","fWholesalePrice":"S$ 160.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":873.60,"retailPrice":1248.00,"fRetailPrice":"HK$ 1,248.00","fWholesalePrice":"HK$ 873.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":3353.00,"retailPrice":4790.00,"fRetailPrice":"NT$ 4,790","fWholesalePrice":"NT$ 3,353"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":1679300.00,"retailPrice":2399000.00,"fRetailPrice":"Rp 2,399juta","fWholesalePrice":"Rp 1.679.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":6930.00,"retailPrice":9900.00,"fRetailPrice":"Rs 9,900","fWholesalePrice":"Rs 6,930"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":8393.00,"retailPrice":11990.00,"fRetailPrice":"11 990 р.","fWholesalePrice":"8 393 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":300.99,"retailPrice":429.99,"fRetailPrice":"429,99 TL","fWholesalePrice":"300,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":447.93,"retailPrice":639.90,"fRetailPrice":"NIS 639.90","fWholesalePrice":"NIS 447.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":1842.10,"retailPrice":2999.99,"fRetailPrice":"R2,999.99","fWholesalePrice":"R1,842.10"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":405.99,"retailPrice":579.99,"fRetailPrice":"SR 579.99","fWholesalePrice":"SR 405.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":405.99,"retailPrice":579.99,"fRetailPrice":"AED 579.99","fWholesalePrice":"AED 405.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":69.99,"retailPrice":119.99,"fRetailPrice":"£119.99","fWholesalePrice":"£69.99"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":671.44,"retailPrice":1199.00,"fRetailPrice":"1.199,00 kr","fWholesalePrice":"671,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":949.20,"retailPrice":1695.00,"fRetailPrice":"1.695,00 kr","fWholesalePrice":"949,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":103.70,"retailPrice":160.00,"fRetailPrice":"CHF 160.00","fWholesalePrice":"CHF 103.70"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":946.40,"retailPrice":1690.00,"fRetailPrice":"1.690,00 kr","fWholesalePrice":"946,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":95.72,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"95,72 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":94.91,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"94,91 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":94.11,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"94,11 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":94.11,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"94,11 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":93.33,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"93,33 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":93.33,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"93,33 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":93.33,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"93,33 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":93.33,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"93,33 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":93.33,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"93,33 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":92.56,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"92,56 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":92.56,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"92,56 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":92.56,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"92,56 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":92.56,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"92,56 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":92.56,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"92,56 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":92.56,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"92,56 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":91.80,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"91,80 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":91.80,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"91,80 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":91.05,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"91,05 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":91.05,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"91,05 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":91.05,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"91,05 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":91.05,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"91,05 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":90.32,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"90,32 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":93.33,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"93,33 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":88.18,"retailPrice":159.99,"fRetailPrice":"159,99 €","fWholesalePrice":"88,18 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":123.20,"retailPrice":175.99,"fRetailPrice":"$175.99","fWholesalePrice":"$123.20"}]},{"tierStem":"68","tierName":"Tier 68","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":119.00,"retailPrice":169.99,"fRetailPrice":"$169.99","fWholesalePrice":"$119.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":160.99,"retailPrice":229.99,"fRetailPrice":"$229.99","fWholesalePrice":"$160.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":2099.30,"retailPrice":2999.00,"fRetailPrice":"$2,999.00","fWholesalePrice":"$2,099.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":165.45,"retailPrice":259.99,"fRetailPrice":"$259.99","fWholesalePrice":"$165.45"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":174.99,"retailPrice":249.99,"fRetailPrice":"$249.99","fWholesalePrice":"$174.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":13860.00,"retailPrice":19800.00000,"fRetailPrice":"¥19,800","fWholesalePrice":"¥13,860"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":753.31,"retailPrice":1098.00,"fRetailPrice":"¥1,098.00","fWholesalePrice":"¥753.31"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":167.29,"retailPrice":238.98,"fRetailPrice":"S$ 238.98","fWholesalePrice":"S$ 167.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":901.60,"retailPrice":1288.00,"fRetailPrice":"HK$ 1,288.00","fWholesalePrice":"HK$ 901.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":3563.00,"retailPrice":5090.00,"fRetailPrice":"NT$ 5,090","fWholesalePrice":"NT$ 3,563"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":1749300.00,"retailPrice":2499000.00,"fRetailPrice":"Rp 2,499juta","fWholesalePrice":"Rp 1.749.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":7350.00,"retailPrice":10500.00,"fRetailPrice":"Rs 10,500","fWholesalePrice":"Rs 7,350"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":9093.00,"retailPrice":12990.00,"fRetailPrice":"12 990 р.","fWholesalePrice":"9 093 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":314.99,"retailPrice":449.99,"fRetailPrice":"449,99 TL","fWholesalePrice":"314,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":475.93,"retailPrice":679.90,"fRetailPrice":"NIS 679.90","fWholesalePrice":"NIS 475.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":2026.31,"retailPrice":3299.99,"fRetailPrice":"R3,299.99","fWholesalePrice":"R2,026.31"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":419.99,"retailPrice":599.99,"fRetailPrice":"SR 599.99","fWholesalePrice":"SR 419.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":419.99,"retailPrice":599.99,"fRetailPrice":"AED 599.99","fWholesalePrice":"AED 419.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":75.83,"retailPrice":129.99,"fRetailPrice":"£129.99","fWholesalePrice":"£75.83"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":727.44,"retailPrice":1299.00,"fRetailPrice":"1.299,00 kr","fWholesalePrice":"727,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":1005.20,"retailPrice":1795.00,"fRetailPrice":"1.795,00 kr","fWholesalePrice":"1.005,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":110.19,"retailPrice":170.00,"fRetailPrice":"CHF 170.00","fWholesalePrice":"CHF 110.19"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":980.00,"retailPrice":1750.00,"fRetailPrice":"1.750,00 kr","fWholesalePrice":"980,00 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":101.70,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"101,70 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":100.84,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"100,84 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":99.99,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"99,99 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":99.99,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"99,99 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":99.16,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"99,16 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":99.16,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"99,16 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":99.16,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"99,16 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":99.16,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"99,16 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":99.16,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"99,16 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":98.34,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"98,34 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":98.34,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"98,34 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":98.34,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"98,34 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":98.34,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"98,34 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":98.34,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"98,34 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":98.34,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"98,34 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":97.54,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"97,54 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":97.54,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"97,54 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":96.74,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"96,74 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":96.74,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"96,74 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":96.74,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"96,74 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":96.74,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"96,74 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":95.96,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"95,96 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":99.16,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"99,16 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":93.70,"retailPrice":169.99,"fRetailPrice":"169,99 €","fWholesalePrice":"93,70 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":130.90,"retailPrice":186.99,"fRetailPrice":"$186.99","fWholesalePrice":"$130.90"}]},{"tierStem":"69","tierName":"Tier 69","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":122.50,"retailPrice":174.99,"fRetailPrice":"$174.99","fWholesalePrice":"$122.50"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":167.99,"retailPrice":239.99,"fRetailPrice":"$239.99","fWholesalePrice":"$167.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":2169.30,"retailPrice":3099.00,"fRetailPrice":"$3,099.00","fWholesalePrice":"$2,169.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":171.81,"retailPrice":269.99,"fRetailPrice":"$269.99","fWholesalePrice":"$171.81"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":181.99,"retailPrice":259.99,"fRetailPrice":"$259.99","fWholesalePrice":"$181.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":14560.00,"retailPrice":20800.00000,"fRetailPrice":"¥20,800","fWholesalePrice":"¥14,560"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":787.61,"retailPrice":1148.00,"fRetailPrice":"¥1,148.00","fWholesalePrice":"¥787.61"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":174.29,"retailPrice":248.98,"fRetailPrice":"S$ 248.98","fWholesalePrice":"S$ 174.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":971.60,"retailPrice":1388.00,"fRetailPrice":"HK$ 1,388.00","fWholesalePrice":"HK$ 971.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":3703.00,"retailPrice":5290.00,"fRetailPrice":"NT$ 5,290","fWholesalePrice":"NT$ 3,703"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":1819300.00,"retailPrice":2599000.00,"fRetailPrice":"Rp 2,599juta","fWholesalePrice":"Rp 1.819.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":7630.00,"retailPrice":10900.00,"fRetailPrice":"Rs 10,900","fWholesalePrice":"Rs 7,630"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":9443.00,"retailPrice":13490.00,"fRetailPrice":"13 490 р.","fWholesalePrice":"9 443 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":328.99,"retailPrice":469.99,"fRetailPrice":"469,99 TL","fWholesalePrice":"328,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":489.93,"retailPrice":699.90,"fRetailPrice":"NIS 699.90","fWholesalePrice":"NIS 489.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":2087.71,"retailPrice":3399.99,"fRetailPrice":"R3,399.99","fWholesalePrice":"R2,087.71"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":454.99,"retailPrice":649.99,"fRetailPrice":"SR 649.99","fWholesalePrice":"SR 454.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":454.99,"retailPrice":649.99,"fRetailPrice":"AED 649.99","fWholesalePrice":"AED 454.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":78.74,"retailPrice":134.99,"fRetailPrice":"£134.99","fWholesalePrice":"£78.74"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":755.44,"retailPrice":1349.00,"fRetailPrice":"1.349,00 kr","fWholesalePrice":"755,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":1035.44,"retailPrice":1849.00,"fRetailPrice":"1.849,00 kr","fWholesalePrice":"1.035,44 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":113.43,"retailPrice":175.00,"fRetailPrice":"CHF 175.00","fWholesalePrice":"CHF 113.43"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":1002.40,"retailPrice":1790.00,"fRetailPrice":"1.790,00 kr","fWholesalePrice":"1.002,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":104.69,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"104,69 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":103.81,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"103,81 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":102.94,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"102,94 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":102.94,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"102,94 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":102.08,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"102,08 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":102.08,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"102,08 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":102.08,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"102,08 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":102.08,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"102,08 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":102.08,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"102,08 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":101.23,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"101,23 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":101.23,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"101,23 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":101.23,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"101,23 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":101.23,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"101,23 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":101.23,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"101,23 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":101.23,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"101,23 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":100.40,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"100,40 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":100.40,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"100,40 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":99.59,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"99,59 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":99.59,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"99,59 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":99.59,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"99,59 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":99.59,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"99,59 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":98.78,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"98,78 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":102.08,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"102,08 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":96.45,"retailPrice":174.99,"fRetailPrice":"174,99 €","fWholesalePrice":"96,45 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":134.75,"retailPrice":192.49,"fRetailPrice":"$192.49","fWholesalePrice":"$134.75"}]},{"tierStem":"70","tierName":"Tier 70","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":126.00,"retailPrice":179.99,"fRetailPrice":"$179.99","fWholesalePrice":"$126.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":174.99,"retailPrice":249.99,"fRetailPrice":"$249.99","fWholesalePrice":"$174.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":2239.30,"retailPrice":3199.00,"fRetailPrice":"$3,199.00","fWholesalePrice":"$2,239.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":178.18,"retailPrice":279.99,"fRetailPrice":"$279.99","fWholesalePrice":"$178.18"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":188.99,"retailPrice":269.99,"fRetailPrice":"$269.99","fWholesalePrice":"$188.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":15260.00,"retailPrice":21800.00000,"fRetailPrice":"¥21,800","fWholesalePrice":"¥15,260"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":821.92,"retailPrice":1198.00,"fRetailPrice":"¥1,198.00","fWholesalePrice":"¥821.92"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":181.29,"retailPrice":258.98,"fRetailPrice":"S$ 258.98","fWholesalePrice":"S$ 181.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":1013.60,"retailPrice":1448.00,"fRetailPrice":"HK$ 1,448.00","fWholesalePrice":"HK$ 1,013.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":3773.00,"retailPrice":5390.00,"fRetailPrice":"NT$ 5,390","fWholesalePrice":"NT$ 3,773"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":1889300.00,"retailPrice":2699000.00,"fRetailPrice":"Rp 2,699juta","fWholesalePrice":"Rp 1.889.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":8050.00,"retailPrice":11500.00,"fRetailPrice":"Rs 11,500","fWholesalePrice":"Rs 8,050"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":9793.00,"retailPrice":13990.00,"fRetailPrice":"13 990 р.","fWholesalePrice":"9 793 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":335.99,"retailPrice":479.99,"fRetailPrice":"479,99 TL","fWholesalePrice":"335,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":503.93,"retailPrice":719.90,"fRetailPrice":"NIS 719.90","fWholesalePrice":"NIS 503.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":2149.12,"retailPrice":3499.99,"fRetailPrice":"R3,499.99","fWholesalePrice":"R2,149.12"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":475.99,"retailPrice":679.99,"fRetailPrice":"SR 679.99","fWholesalePrice":"SR 475.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":475.99,"retailPrice":679.99,"fRetailPrice":"AED 679.99","fWholesalePrice":"AED 475.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":81.66,"retailPrice":139.99,"fRetailPrice":"£139.99","fWholesalePrice":"£81.66"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":783.44,"retailPrice":1399.00,"fRetailPrice":"1.399,00 kr","fWholesalePrice":"783,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":1061.20,"retailPrice":1895.00,"fRetailPrice":"1.895,00 kr","fWholesalePrice":"1.061,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":116.67,"retailPrice":180.00,"fRetailPrice":"CHF 180.00","fWholesalePrice":"CHF 116.67"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":1058.40,"retailPrice":1890.00,"fRetailPrice":"1.890,00 kr","fWholesalePrice":"1.058,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":107.69,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"107,69 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":106.77,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"106,77 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":105.88,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"105,88 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":105.88,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"105,88 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":104.99,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"104,99 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":104.99,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"104,99 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":104.99,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"104,99 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":104.99,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"104,99 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":104.99,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"104,99 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":104.13,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"104,13 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":104.13,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"104,13 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":104.13,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"104,13 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":104.13,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"104,13 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":104.13,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"104,13 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":104.13,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"104,13 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":103.27,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"103,27 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":103.27,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"103,27 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":102.43,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"102,43 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":102.43,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"102,43 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":102.43,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"102,43 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":102.43,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"102,43 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":101.61,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"101,61 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":104.99,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"104,99 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":99.21,"retailPrice":179.99,"fRetailPrice":"179,99 €","fWholesalePrice":"99,21 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":138.60,"retailPrice":197.99,"fRetailPrice":"$197.99","fWholesalePrice":"$138.60"}]},{"tierStem":"71","tierName":"Tier 71","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":133.00,"retailPrice":189.99,"fRetailPrice":"$189.99","fWholesalePrice":"$133.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":181.99,"retailPrice":259.99,"fRetailPrice":"$259.99","fWholesalePrice":"$181.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":2309.30,"retailPrice":3299.00,"fRetailPrice":"$3,299.00","fWholesalePrice":"$2,309.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":190.90,"retailPrice":299.99,"fRetailPrice":"$299.99","fWholesalePrice":"$190.90"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":195.99,"retailPrice":279.99,"fRetailPrice":"$279.99","fWholesalePrice":"$195.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":15960.00,"retailPrice":22800.00000,"fRetailPrice":"¥22,800","fWholesalePrice":"¥15,960"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":856.22,"retailPrice":1248.00,"fRetailPrice":"¥1,248.00","fWholesalePrice":"¥856.22"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":188.22,"retailPrice":268.88,"fRetailPrice":"S$ 268.88","fWholesalePrice":"S$ 188.22"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":1041.60,"retailPrice":1488.00,"fRetailPrice":"HK$ 1,488.00","fWholesalePrice":"HK$ 1,041.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":3983.00,"retailPrice":5690.00,"fRetailPrice":"NT$ 5,690","fWholesalePrice":"NT$ 3,983"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":1959300.00,"retailPrice":2799000.00,"fRetailPrice":"Rp 2,799juta","fWholesalePrice":"Rp 1.959.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":8330.00,"retailPrice":11900.00,"fRetailPrice":"Rs 11,900","fWholesalePrice":"Rs 8,330"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":10143.00,"retailPrice":14490.00,"fRetailPrice":"14 490 р.","fWholesalePrice":"10 143 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":349.99,"retailPrice":499.99,"fRetailPrice":"499,99 TL","fWholesalePrice":"349,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":531.93,"retailPrice":759.90,"fRetailPrice":"NIS 759.90","fWholesalePrice":"NIS 531.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":2271.92,"retailPrice":3699.99,"fRetailPrice":"R3,699.99","fWholesalePrice":"R2,271.92"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":489.99,"retailPrice":699.99,"fRetailPrice":"SR 699.99","fWholesalePrice":"SR 489.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":489.99,"retailPrice":699.99,"fRetailPrice":"AED 699.99","fWholesalePrice":"AED 489.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":84.58,"retailPrice":144.99,"fRetailPrice":"£144.99","fWholesalePrice":"£84.58"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":839.44,"retailPrice":1499.00,"fRetailPrice":"1.499,00 kr","fWholesalePrice":"839,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":1117.20,"retailPrice":1995.00,"fRetailPrice":"1.995,00 kr","fWholesalePrice":"1.117,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":123.15,"retailPrice":190.00,"fRetailPrice":"CHF 190.00","fWholesalePrice":"CHF 123.15"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":1114.40,"retailPrice":1990.00,"fRetailPrice":"1.990,00 kr","fWholesalePrice":"1.114,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":113.67,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"113,67 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":112.71,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"112,71 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":111.76,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"111,76 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":111.76,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"111,76 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":110.83,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"110,83 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":110.83,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"110,83 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":110.83,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"110,83 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":110.83,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"110,83 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":110.83,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"110,83 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":109.91,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"109,91 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":109.91,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"109,91 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":109.91,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"109,91 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":109.91,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"109,91 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":109.91,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"109,91 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":109.91,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"109,91 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":109.01,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"109,01 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":109.01,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"109,01 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":108.12,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"108,12 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":108.12,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"108,12 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":108.12,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"108,12 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":108.12,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"108,12 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":107.25,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"107,25 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":110.83,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"110,83 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":104.72,"retailPrice":189.99,"fRetailPrice":"189,99 €","fWholesalePrice":"104,72 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":146.30,"retailPrice":208.99,"fRetailPrice":"$208.99","fWholesalePrice":"$146.30"}]},{"tierStem":"72","tierName":"Tier 72","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":140.00,"retailPrice":199.99,"fRetailPrice":"$199.99","fWholesalePrice":"$140.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":195.99,"retailPrice":279.99,"fRetailPrice":"$279.99","fWholesalePrice":"$195.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":2449.30,"retailPrice":3499.00,"fRetailPrice":"$3,499.00","fWholesalePrice":"$2,449.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":203.63,"retailPrice":319.99,"fRetailPrice":"$319.99","fWholesalePrice":"$203.63"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":209.99,"retailPrice":299.99,"fRetailPrice":"$299.99","fWholesalePrice":"$209.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":16660.00,"retailPrice":23800.00000,"fRetailPrice":"¥23,800","fWholesalePrice":"¥16,660"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":890.52,"retailPrice":1298.00,"fRetailPrice":"¥1,298.00","fWholesalePrice":"¥890.52"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":202.29,"retailPrice":288.98,"fRetailPrice":"S$ 288.98","fWholesalePrice":"S$ 202.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":1111.60,"retailPrice":1588.00,"fRetailPrice":"HK$ 1,588.00","fWholesalePrice":"HK$ 1,111.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":4193.00,"retailPrice":5990.00,"fRetailPrice":"NT$ 5,990","fWholesalePrice":"NT$ 4,193"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":2099300.00,"retailPrice":2999000.00,"fRetailPrice":"Rp 2,999juta","fWholesalePrice":"Rp 2.099.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":8750.00,"retailPrice":12500.00,"fRetailPrice":"Rs 12,500","fWholesalePrice":"Rs 8,750"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":10493.00,"retailPrice":14990.00,"fRetailPrice":"14 990 р.","fWholesalePrice":"10 493 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":370.99,"retailPrice":529.99,"fRetailPrice":"529,99 TL","fWholesalePrice":"370,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":559.93,"retailPrice":799.90,"fRetailPrice":"NIS 799.90","fWholesalePrice":"NIS 559.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":2333.33,"retailPrice":3799.99,"fRetailPrice":"R3,799.99","fWholesalePrice":"R2,333.33"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":524.99,"retailPrice":749.99,"fRetailPrice":"SR 749.99","fWholesalePrice":"SR 524.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":524.99,"retailPrice":749.99,"fRetailPrice":"AED 749.99","fWholesalePrice":"AED 524.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":87.49,"retailPrice":149.99,"fRetailPrice":"£149.99","fWholesalePrice":"£87.49"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":867.44,"retailPrice":1549.00,"fRetailPrice":"1.549,00 kr","fWholesalePrice":"867,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":1173.20,"retailPrice":2095.00,"fRetailPrice":"2.095,00 kr","fWholesalePrice":"1.173,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":129.63,"retailPrice":200.00,"fRetailPrice":"CHF 200.00","fWholesalePrice":"CHF 129.63"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":1226.40,"retailPrice":2190.00,"fRetailPrice":"2.190,00 kr","fWholesalePrice":"1.226,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":119.65,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"119,65 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":118.64,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"118,64 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":117.64,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"117,64 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":117.64,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"117,64 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":116.66,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"116,66 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":116.66,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"116,66 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":116.66,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"116,66 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":116.66,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"116,66 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":116.66,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"116,66 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":115.70,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"115,70 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":115.70,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"115,70 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":115.70,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"115,70 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":115.70,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"115,70 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":115.70,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"115,70 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":115.70,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"115,70 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":114.75,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"114,75 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":114.75,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"114,75 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":113.82,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"113,82 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":113.82,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"113,82 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":113.82,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"113,82 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":113.82,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"113,82 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":112.90,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"112,90 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":116.66,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"116,66 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":110.23,"retailPrice":199.99,"fRetailPrice":"199,99 €","fWholesalePrice":"110,23 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":154.00,"retailPrice":219.99,"fRetailPrice":"$219.99","fWholesalePrice":"$154.00"}]},{"tierStem":"73","tierName":"Tier 73","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":147.00,"retailPrice":209.99,"fRetailPrice":"$209.99","fWholesalePrice":"$147.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":202.99,"retailPrice":289.99,"fRetailPrice":"$289.99","fWholesalePrice":"$202.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":2589.30,"retailPrice":3699.00,"fRetailPrice":"$3,699.00","fWholesalePrice":"$2,589.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":209.99,"retailPrice":329.99,"fRetailPrice":"$329.99","fWholesalePrice":"$209.99"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":216.99,"retailPrice":309.99,"fRetailPrice":"$309.99","fWholesalePrice":"$216.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":17360.00,"retailPrice":24800.00000,"fRetailPrice":"¥24,800","fWholesalePrice":"¥17,360"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":959.13,"retailPrice":1398.00,"fRetailPrice":"¥1,398.00","fWholesalePrice":"¥959.13"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":209.29,"retailPrice":298.98,"fRetailPrice":"S$ 298.98","fWholesalePrice":"S$ 209.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":1153.60,"retailPrice":1648.00,"fRetailPrice":"HK$ 1,648.00","fWholesalePrice":"HK$ 1,153.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":4403.00,"retailPrice":6290.00,"fRetailPrice":"NT$ 6,290","fWholesalePrice":"NT$ 4,403"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":2169300.00,"retailPrice":3099000.00,"fRetailPrice":"Rp 3,099juta","fWholesalePrice":"Rp 2.169.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":9030.00,"retailPrice":12900.00,"fRetailPrice":"Rs 12,900","fWholesalePrice":"Rs 9,030"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":11193.00,"retailPrice":15990.00,"fRetailPrice":"15 990 р.","fWholesalePrice":"11 193 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":384.99,"retailPrice":549.99,"fRetailPrice":"549,99 TL","fWholesalePrice":"384,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":587.93,"retailPrice":839.90,"fRetailPrice":"NIS 839.90","fWholesalePrice":"NIS 587.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":2456.13,"retailPrice":3999.99,"fRetailPrice":"R3,999.99","fWholesalePrice":"R2,456.13"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":545.99,"retailPrice":779.99,"fRetailPrice":"SR 779.99","fWholesalePrice":"SR 545.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":545.99,"retailPrice":779.99,"fRetailPrice":"AED 779.99","fWholesalePrice":"AED 545.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":93.33,"retailPrice":159.99,"fRetailPrice":"£159.99","fWholesalePrice":"£93.33"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":895.44,"retailPrice":1599.00,"fRetailPrice":"1.599,00 kr","fWholesalePrice":"895,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":1229.20,"retailPrice":2195.00,"fRetailPrice":"2.195,00 kr","fWholesalePrice":"1.229,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":136.11,"retailPrice":210.00,"fRetailPrice":"CHF 210.00","fWholesalePrice":"CHF 136.11"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":1282.40,"retailPrice":2290.00,"fRetailPrice":"2.290,00 kr","fWholesalePrice":"1.282,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":125.64,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"125,64 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":124.57,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"124,57 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":123.52,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"123,52 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":123.52,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"123,52 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":122.49,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"122,49 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":122.49,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"122,49 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":122.49,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"122,49 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":122.49,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"122,49 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":122.49,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"122,49 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":121.48,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"121,48 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":121.48,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"121,48 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":121.48,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"121,48 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":121.48,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"121,48 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":121.48,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"121,48 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":121.48,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"121,48 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":120.49,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"120,49 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":120.49,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"120,49 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":119.51,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"119,51 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":119.51,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"119,51 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":119.51,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"119,51 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":119.51,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"119,51 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":118.54,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"118,54 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":122.49,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"122,49 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":115.74,"retailPrice":209.99,"fRetailPrice":"209,99 €","fWholesalePrice":"115,74 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":161.70,"retailPrice":230.99,"fRetailPrice":"$230.99","fWholesalePrice":"$161.70"}]},{"tierStem":"74","tierName":"Tier 74","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":154.00,"retailPrice":219.99,"fRetailPrice":"$219.99","fWholesalePrice":"$154.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":209.99,"retailPrice":299.99,"fRetailPrice":"$299.99","fWholesalePrice":"$209.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":2659.30,"retailPrice":3799.00,"fRetailPrice":"$3,799.00","fWholesalePrice":"$2,659.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":222.72,"retailPrice":349.99,"fRetailPrice":"$349.99","fWholesalePrice":"$222.72"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":230.99,"retailPrice":329.99,"fRetailPrice":"$329.99","fWholesalePrice":"$230.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":18760.00,"retailPrice":26800.00000,"fRetailPrice":"¥26,800","fWholesalePrice":"¥18,760"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":993.43,"retailPrice":1448.00,"fRetailPrice":"¥1,448.00","fWholesalePrice":"¥993.43"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":223.29,"retailPrice":318.98,"fRetailPrice":"S$ 318.98","fWholesalePrice":"S$ 223.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":1181.60,"retailPrice":1688.00,"fRetailPrice":"HK$ 1,688.00","fWholesalePrice":"HK$ 1,181.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":4613.00,"retailPrice":6590.00,"fRetailPrice":"NT$ 6,590","fWholesalePrice":"NT$ 4,613"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":2239300.00,"retailPrice":3199000.00,"fRetailPrice":"Rp 3,199juta","fWholesalePrice":"Rp 2.239.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":9450.00,"retailPrice":13500.00,"fRetailPrice":"Rs 13,500","fWholesalePrice":"Rs 9,450"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":11893.00,"retailPrice":16990.00,"fRetailPrice":"16 990 р.","fWholesalePrice":"11 893 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":405.99,"retailPrice":579.99,"fRetailPrice":"579,99 TL","fWholesalePrice":"405,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":615.93,"retailPrice":879.90,"fRetailPrice":"NIS 879.90","fWholesalePrice":"NIS 615.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":2578.94,"retailPrice":4199.99,"fRetailPrice":"R4,199.99","fWholesalePrice":"R2,578.94"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":559.99,"retailPrice":799.99,"fRetailPrice":"SR 799.99","fWholesalePrice":"SR 559.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":559.99,"retailPrice":799.99,"fRetailPrice":"AED 799.99","fWholesalePrice":"AED 559.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":99.16,"retailPrice":169.99,"fRetailPrice":"£169.99","fWholesalePrice":"£99.16"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":951.44,"retailPrice":1699.00,"fRetailPrice":"1.699,00 kr","fWholesalePrice":"951,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":1285.20,"retailPrice":2295.00,"fRetailPrice":"2.295,00 kr","fWholesalePrice":"1.285,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":142.59,"retailPrice":220.00,"fRetailPrice":"CHF 220.00","fWholesalePrice":"CHF 142.59"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":1338.40,"retailPrice":2390.00,"fRetailPrice":"2.390,00 kr","fWholesalePrice":"1.338,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":131.62,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"131,62 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":130.50,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"130,50 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":129.41,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"129,41 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":129.41,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"129,41 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":128.33,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"128,33 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":128.33,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"128,33 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":128.33,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"128,33 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":128.33,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"128,33 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":128.33,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"128,33 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":127.27,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"127,27 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":127.27,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"127,27 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":127.27,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"127,27 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":127.27,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"127,27 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":127.27,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"127,27 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":127.27,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"127,27 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":126.22,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"126,22 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":126.22,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"126,22 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":125.20,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"125,20 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":125.20,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"125,20 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":125.20,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"125,20 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":125.20,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"125,20 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":124.19,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"124,19 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":128.33,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"128,33 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":121.25,"retailPrice":219.99,"fRetailPrice":"219,99 €","fWholesalePrice":"121,25 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":169.40,"retailPrice":241.99,"fRetailPrice":"$241.99","fWholesalePrice":"$169.40"}]},{"tierStem":"75","tierName":"Tier 75","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":161.00,"retailPrice":229.99,"fRetailPrice":"$229.99","fWholesalePrice":"$161.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":223.99,"retailPrice":319.99,"fRetailPrice":"$319.99","fWholesalePrice":"$223.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":2799.30,"retailPrice":3999.00,"fRetailPrice":"$3,999.00","fWholesalePrice":"$2,799.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":229.08,"retailPrice":359.99,"fRetailPrice":"$359.99","fWholesalePrice":"$229.08"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":237.99,"retailPrice":339.99,"fRetailPrice":"$339.99","fWholesalePrice":"$237.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":19460.00,"retailPrice":27800.00000,"fRetailPrice":"¥27,800","fWholesalePrice":"¥19,460"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":1027.74,"retailPrice":1498.00,"fRetailPrice":"¥1,498.00","fWholesalePrice":"¥1,027.74"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":230.29,"retailPrice":328.98,"fRetailPrice":"S$ 328.98","fWholesalePrice":"S$ 230.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":1251.60,"retailPrice":1788.00,"fRetailPrice":"HK$ 1,788.00","fWholesalePrice":"HK$ 1,251.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":4823.00,"retailPrice":6890.00,"fRetailPrice":"NT$ 6,890","fWholesalePrice":"NT$ 4,823"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":2379300.00,"retailPrice":3399000.00,"fRetailPrice":"Rp 3,399juta","fWholesalePrice":"Rp 2.379.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":9730.00,"retailPrice":13900.00,"fRetailPrice":"Rs 13,900","fWholesalePrice":"Rs 9,730"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":12243.00,"retailPrice":17490.00,"fRetailPrice":"17 490 р.","fWholesalePrice":"12 243 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":419.99,"retailPrice":599.99,"fRetailPrice":"599,99 TL","fWholesalePrice":"419,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":643.93,"retailPrice":919.90,"fRetailPrice":"NIS 919.90","fWholesalePrice":"NIS 643.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":2701.75,"retailPrice":4399.99,"fRetailPrice":"R4,399.99","fWholesalePrice":"R2,701.75"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":594.99,"retailPrice":849.99,"fRetailPrice":"SR 849.99","fWholesalePrice":"SR 594.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":594.99,"retailPrice":849.99,"fRetailPrice":"AED 849.99","fWholesalePrice":"AED 594.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":104.99,"retailPrice":179.99,"fRetailPrice":"£179.99","fWholesalePrice":"£104.99"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":1007.44,"retailPrice":1799.00,"fRetailPrice":"1.799,00 kr","fWholesalePrice":"1.007,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":1341.20,"retailPrice":2395.00,"fRetailPrice":"2.395,00 kr","fWholesalePrice":"1.341,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":149.07,"retailPrice":230.00,"fRetailPrice":"CHF 230.00","fWholesalePrice":"CHF 149.07"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":1394.40,"retailPrice":2490.00,"fRetailPrice":"2.490,00 kr","fWholesalePrice":"1.394,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":137.60,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"137,60 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":136.43,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"136,43 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":135.29,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"135,29 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":135.29,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"135,29 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":134.16,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"134,16 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":134.16,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"134,16 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":134.16,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"134,16 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":134.16,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"134,16 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":134.16,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"134,16 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":133.05,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"133,05 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":133.05,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"133,05 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":133.05,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"133,05 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":133.05,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"133,05 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":133.05,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"133,05 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":133.05,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"133,05 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":131.96,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"131,96 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":131.96,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"131,96 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":130.89,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"130,89 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":130.89,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"130,89 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":130.89,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"130,89 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":130.89,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"130,89 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":129.83,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"129,83 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":134.16,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"134,16 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":126.77,"retailPrice":229.99,"fRetailPrice":"229,99 €","fWholesalePrice":"126,77 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":177.10,"retailPrice":252.99,"fRetailPrice":"$252.99","fWholesalePrice":"$177.10"}]},{"tierStem":"76","tierName":"Tier 76","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":168.00,"retailPrice":239.99,"fRetailPrice":"$239.99","fWholesalePrice":"$168.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":230.99,"retailPrice":329.99,"fRetailPrice":"$329.99","fWholesalePrice":"$230.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":2939.30,"retailPrice":4199.00,"fRetailPrice":"$4,199.00","fWholesalePrice":"$2,939.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":241.81,"retailPrice":379.99,"fRetailPrice":"$379.99","fWholesalePrice":"$241.81"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":251.99,"retailPrice":359.99,"fRetailPrice":"$359.99","fWholesalePrice":"$251.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":20160.00,"retailPrice":28800.00000,"fRetailPrice":"¥28,800","fWholesalePrice":"¥20,160"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":1096.34,"retailPrice":1598.00,"fRetailPrice":"¥1,598.00","fWholesalePrice":"¥1,096.34"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":237.29,"retailPrice":338.98,"fRetailPrice":"S$ 338.98","fWholesalePrice":"S$ 237.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":1293.60,"retailPrice":1848.00,"fRetailPrice":"HK$ 1,848.00","fWholesalePrice":"HK$ 1,293.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":5033.00,"retailPrice":7190.00,"fRetailPrice":"NT$ 7,190","fWholesalePrice":"NT$ 5,033"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":2449300.00,"retailPrice":3499000.00,"fRetailPrice":"Rp 3,499juta","fWholesalePrice":"Rp 2.449.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":10430.00,"retailPrice":14900.00,"fRetailPrice":"Rs 14,900","fWholesalePrice":"Rs 10,430"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":12593.00,"retailPrice":17990.00,"fRetailPrice":"17 990 р.","fWholesalePrice":"12 593 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":440.99,"retailPrice":629.99,"fRetailPrice":"629,99 TL","fWholesalePrice":"440,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":671.93,"retailPrice":959.90,"fRetailPrice":"NIS 959.90","fWholesalePrice":"NIS 671.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":2824.56,"retailPrice":4599.99,"fRetailPrice":"R4,599.99","fWholesalePrice":"R2,824.56"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":615.99,"retailPrice":879.99,"fRetailPrice":"SR 879.99","fWholesalePrice":"SR 615.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":615.99,"retailPrice":879.99,"fRetailPrice":"AED 879.99","fWholesalePrice":"AED 615.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":110.83,"retailPrice":189.99,"fRetailPrice":"£189.99","fWholesalePrice":"£110.83"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":1063.44,"retailPrice":1899.00,"fRetailPrice":"1.899,00 kr","fWholesalePrice":"1.063,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":1397.20,"retailPrice":2495.00,"fRetailPrice":"2.495,00 kr","fWholesalePrice":"1.397,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":155.56,"retailPrice":240.00,"fRetailPrice":"CHF 240.00","fWholesalePrice":"CHF 155.56"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":1450.40,"retailPrice":2590.00,"fRetailPrice":"2.590,00 kr","fWholesalePrice":"1.450,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":143.58,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"143,58 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":142.37,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"142,37 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":141.17,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"141,17 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":141.17,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"141,17 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":139.99,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"139,99 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":139.99,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"139,99 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":139.99,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"139,99 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":139.99,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"139,99 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":139.99,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"139,99 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":138.84,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"138,84 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":138.84,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"138,84 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":138.84,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"138,84 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":138.84,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"138,84 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":138.84,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"138,84 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":138.84,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"138,84 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":137.70,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"137,70 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":137.70,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"137,70 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":136.58,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"136,58 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":136.58,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"136,58 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":136.58,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"136,58 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":136.58,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"136,58 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":135.48,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"135,48 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":139.99,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"139,99 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":132.28,"retailPrice":239.99,"fRetailPrice":"239,99 €","fWholesalePrice":"132,28 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":184.80,"retailPrice":263.99,"fRetailPrice":"$263.99","fWholesalePrice":"$184.80"}]},{"tierStem":"77","tierName":"Tier 77","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":175.00,"retailPrice":249.99,"fRetailPrice":"$249.99","fWholesalePrice":"$175.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":244.99,"retailPrice":349.99,"fRetailPrice":"$349.99","fWholesalePrice":"$244.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":3149.30,"retailPrice":4499.00,"fRetailPrice":"$4,499.00","fWholesalePrice":"$3,149.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":254.54,"retailPrice":399.99,"fRetailPrice":"$399.99","fWholesalePrice":"$254.54"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":258.99,"retailPrice":369.99,"fRetailPrice":"$369.99","fWholesalePrice":"$258.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":20860.00,"retailPrice":29800.00000,"fRetailPrice":"¥29,800","fWholesalePrice":"¥20,860"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":1130.65,"retailPrice":1648.00,"fRetailPrice":"¥1,648.00","fWholesalePrice":"¥1,130.65"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":244.29,"retailPrice":348.98,"fRetailPrice":"S$ 348.98","fWholesalePrice":"S$ 244.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":1321.60,"retailPrice":1888.00,"fRetailPrice":"HK$ 1,888.00","fWholesalePrice":"HK$ 1,321.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":5243.00,"retailPrice":7490.00,"fRetailPrice":"NT$ 7,490","fWholesalePrice":"NT$ 5,243"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":2519300.00,"retailPrice":3599000.00,"fRetailPrice":"Rp 3,599juta","fWholesalePrice":"Rp 2.519.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":10850.00,"retailPrice":15500.00,"fRetailPrice":"Rs 15,500","fWholesalePrice":"Rs 10,850"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":13293.00,"retailPrice":18990.00,"fRetailPrice":"18 990 р.","fWholesalePrice":"13 293 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":454.99,"retailPrice":649.99,"fRetailPrice":"649,99 TL","fWholesalePrice":"454,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":699.93,"retailPrice":999.90,"fRetailPrice":"NIS 999.90","fWholesalePrice":"NIS 699.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":2947.36,"retailPrice":4799.99,"fRetailPrice":"R4,799.99","fWholesalePrice":"R2,947.36"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":629.99,"retailPrice":899.99,"fRetailPrice":"SR 899.99","fWholesalePrice":"SR 629.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":629.99,"retailPrice":899.99,"fRetailPrice":"AED 899.99","fWholesalePrice":"AED 629.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":116.66,"retailPrice":199.99,"fRetailPrice":"£199.99","fWholesalePrice":"£116.66"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":1119.44,"retailPrice":1999.00,"fRetailPrice":"1.999,00 kr","fWholesalePrice":"1.119,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":1453.20,"retailPrice":2595.00,"fRetailPrice":"2.595,00 kr","fWholesalePrice":"1.453,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":162.04,"retailPrice":250.00,"fRetailPrice":"CHF 250.00","fWholesalePrice":"CHF 162.04"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":1506.40,"retailPrice":2690.00,"fRetailPrice":"2.690,00 kr","fWholesalePrice":"1.506,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":149.57,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"149,57 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":148.30,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"148,30 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":147.05,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"147,05 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":147.05,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"147,05 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":145.83,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"145,83 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":145.83,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"145,83 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":145.83,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"145,83 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":145.83,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"145,83 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":145.83,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"145,83 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":144.62,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"144,62 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":144.62,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"144,62 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":144.62,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"144,62 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":144.62,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"144,62 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":144.62,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"144,62 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":144.62,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"144,62 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":143.44,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"143,44 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":143.44,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"143,44 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":142.27,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"142,27 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":142.27,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"142,27 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":142.27,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"142,27 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":142.27,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"142,27 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":141.12,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"141,12 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":145.83,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"145,83 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":137.79,"retailPrice":249.99,"fRetailPrice":"249,99 €","fWholesalePrice":"137,79 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":192.50,"retailPrice":274.99,"fRetailPrice":"$274.99","fWholesalePrice":"$192.50"}]},{"tierStem":"78","tierName":"Tier 78","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":210.00,"retailPrice":299.99,"fRetailPrice":"$299.99","fWholesalePrice":"$210.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":279.99,"retailPrice":399.99,"fRetailPrice":"$399.99","fWholesalePrice":"$279.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":3499.30,"retailPrice":4999.00,"fRetailPrice":"$4,999.00","fWholesalePrice":"$3,499.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":318.18,"retailPrice":499.99,"fRetailPrice":"$499.99","fWholesalePrice":"$318.18"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":314.99,"retailPrice":449.99,"fRetailPrice":"$449.99","fWholesalePrice":"$314.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":24360.00,"retailPrice":34800.00000,"fRetailPrice":"¥34,800","fWholesalePrice":"¥24,360"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":1370.77,"retailPrice":1998.00,"fRetailPrice":"¥1,998.00","fWholesalePrice":"¥1,370.77"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":314.29,"retailPrice":448.98,"fRetailPrice":"S$ 448.98","fWholesalePrice":"S$ 314.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":1601.60,"retailPrice":2288.00,"fRetailPrice":"HK$ 2,288.00","fWholesalePrice":"HK$ 1,601.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":6293.00,"retailPrice":8990.00,"fRetailPrice":"NT$ 8,990","fWholesalePrice":"NT$ 6,293"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":3079300.00,"retailPrice":4399000.00,"fRetailPrice":"Rp 4,399juta","fWholesalePrice":"Rp 3.079.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":12950.00,"retailPrice":18500.00,"fRetailPrice":"Rs 18,500","fWholesalePrice":"Rs 12,950"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":16093.00,"retailPrice":22990.00,"fRetailPrice":"22 990 р.","fWholesalePrice":"16 093 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":559.99,"retailPrice":799.99,"fRetailPrice":"799,99 TL","fWholesalePrice":"559,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":839.93,"retailPrice":1199.90,"fRetailPrice":"NIS 1,199.90","fWholesalePrice":"NIS 839.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":3684.20,"retailPrice":5999.99,"fRetailPrice":"R5,999.99","fWholesalePrice":"R3,684.20"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":769.99,"retailPrice":1099.99,"fRetailPrice":"SR 1,099.99","fWholesalePrice":"SR 769.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":769.99,"retailPrice":1099.99,"fRetailPrice":"AED 1,099.99","fWholesalePrice":"AED 769.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":134.16,"retailPrice":229.99,"fRetailPrice":"£229.99","fWholesalePrice":"£134.16"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":1287.44,"retailPrice":2299.00,"fRetailPrice":"2.299,00 kr","fWholesalePrice":"1.287,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":1789.20,"retailPrice":3195.00,"fRetailPrice":"3.195,00 kr","fWholesalePrice":"1.789,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":194.44,"retailPrice":300.00,"fRetailPrice":"CHF 300.00","fWholesalePrice":"CHF 194.44"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":1842.40,"retailPrice":3290.00,"fRetailPrice":"3.290,00 kr","fWholesalePrice":"1.842,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":179.48,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"179,48 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":177.96,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"177,96 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":176.46,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"176,46 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":176.46,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"176,46 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":174.99,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"174,99 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":174.99,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"174,99 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":174.99,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"174,99 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":174.99,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"174,99 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":174.99,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"174,99 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":173.55,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"173,55 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":173.55,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"173,55 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":173.55,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"173,55 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":173.55,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"173,55 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":173.55,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"173,55 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":173.55,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"173,55 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":172.13,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"172,13 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":172.13,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"172,13 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":170.73,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"170,73 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":170.73,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"170,73 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":170.73,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"170,73 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":170.73,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"170,73 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":169.35,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"169,35 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":174.99,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"174,99 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":165.35,"retailPrice":299.99,"fRetailPrice":"299,99 €","fWholesalePrice":"165,35 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":231.00,"retailPrice":329.99,"fRetailPrice":"$329.99","fWholesalePrice":"$231.00"}]},{"tierStem":"79","tierName":"Tier 79","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":245.00,"retailPrice":349.99,"fRetailPrice":"$349.99","fWholesalePrice":"$245.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":349.99,"retailPrice":499.99,"fRetailPrice":"$499.99","fWholesalePrice":"$349.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":4199.30,"retailPrice":5999.00,"fRetailPrice":"$5,999.00","fWholesalePrice":"$4,199.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":349.99,"retailPrice":549.99,"fRetailPrice":"$549.99","fWholesalePrice":"$349.99"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":349.99,"retailPrice":499.99,"fRetailPrice":"$499.99","fWholesalePrice":"$349.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":29960.00,"retailPrice":42800.00000,"fRetailPrice":"¥42,800","fWholesalePrice":"¥29,960"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":1576.60,"retailPrice":2298.00,"fRetailPrice":"¥2,298.00","fWholesalePrice":"¥1,576.60"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":342.29,"retailPrice":488.98,"fRetailPrice":"S$ 488.98","fWholesalePrice":"S$ 342.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":1881.60,"retailPrice":2688.00,"fRetailPrice":"HK$ 2,688.00","fWholesalePrice":"HK$ 1,881.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":6993.00,"retailPrice":9990.00,"fRetailPrice":"NT$ 9,990","fWholesalePrice":"NT$ 6,993"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":3499300.00,"retailPrice":4999000.00,"fRetailPrice":"Rp 4,999juta","fWholesalePrice":"Rp 3.499.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":15050.00,"retailPrice":21500.00,"fRetailPrice":"Rs 21,500","fWholesalePrice":"Rs 15,050"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":18893.00,"retailPrice":26990.00,"fRetailPrice":"26 990 р.","fWholesalePrice":"18 893 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":664.99,"retailPrice":949.99,"fRetailPrice":"949,99 TL","fWholesalePrice":"664,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":979.93,"retailPrice":1399.90,"fRetailPrice":"NIS 1,399.90","fWholesalePrice":"NIS 979.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":4298.24,"retailPrice":6999.99,"fRetailPrice":"R6,999.99","fWholesalePrice":"R4,298.24"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":909.99,"retailPrice":1299.99,"fRetailPrice":"SR 1,299.99","fWholesalePrice":"SR 909.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":909.99,"retailPrice":1299.99,"fRetailPrice":"AED 1,299.99","fWholesalePrice":"AED 909.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":145.83,"retailPrice":249.99,"fRetailPrice":"£249.99","fWholesalePrice":"£145.83"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":1399.44,"retailPrice":2499.00,"fRetailPrice":"2.499,00 kr","fWholesalePrice":"1.399,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":2069.20,"retailPrice":3695.00,"fRetailPrice":"3.695,00 kr","fWholesalePrice":"2.069,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":226.85,"retailPrice":350.00,"fRetailPrice":"CHF 350.00","fWholesalePrice":"CHF 226.85"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":2122.40,"retailPrice":3790.00,"fRetailPrice":"3.790,00 kr","fWholesalePrice":"2.122,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":209.40,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"209,40 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":207.62,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"207,62 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":205.88,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"205,88 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":205.88,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"205,88 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":204.16,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"204,16 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":204.16,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"204,16 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":204.16,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"204,16 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":204.16,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"204,16 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":204.16,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"204,16 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":202.47,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"202,47 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":202.47,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"202,47 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":202.47,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"202,47 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":202.47,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"202,47 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":202.47,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"202,47 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":202.47,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"202,47 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":200.81,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"200,81 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":200.81,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"200,81 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":199.18,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"199,18 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":199.18,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"199,18 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":199.18,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"199,18 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":199.18,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"199,18 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":197.58,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"197,58 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":204.16,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"204,16 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":192.91,"retailPrice":349.99,"fRetailPrice":"349,99 €","fWholesalePrice":"192,91 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":269.50,"retailPrice":384.99,"fRetailPrice":"$384.99","fWholesalePrice":"$269.50"}]},{"tierStem":"80","tierName":"Tier 80","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":280.00,"retailPrice":399.99,"fRetailPrice":"$399.99","fWholesalePrice":"$280.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":384.99,"retailPrice":549.99,"fRetailPrice":"$549.99","fWholesalePrice":"$384.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":4899.30,"retailPrice":6999.00,"fRetailPrice":"$6,999.00","fWholesalePrice":"$4,899.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":381.81,"retailPrice":599.99,"fRetailPrice":"$599.99","fWholesalePrice":"$381.81"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":419.99,"retailPrice":599.99,"fRetailPrice":"$599.99","fWholesalePrice":"$419.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":34160.00,"retailPrice":48800.00000,"fRetailPrice":"¥48,800","fWholesalePrice":"¥34,160"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":1782.42,"retailPrice":2598.00,"fRetailPrice":"¥2,598.00","fWholesalePrice":"¥1,782.42"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":412.29,"retailPrice":588.98,"fRetailPrice":"S$ 588.98","fWholesalePrice":"S$ 412.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":2161.60,"retailPrice":3088.00,"fRetailPrice":"HK$ 3,088.00","fWholesalePrice":"HK$ 2,161.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":8330.00,"retailPrice":11900.00,"fRetailPrice":"NT$ 11,900","fWholesalePrice":"NT$ 8,330"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":4129300.00,"retailPrice":5899000.00,"fRetailPrice":"Rp 5,899juta","fWholesalePrice":"Rp 4.129.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":17430.00,"retailPrice":24900.00,"fRetailPrice":"Rs 24,900","fWholesalePrice":"Rs 17,430"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":20993.00,"retailPrice":29990.00,"fRetailPrice":"29 990 р.","fWholesalePrice":"20 993 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":769.99,"retailPrice":1099.99,"fRetailPrice":"1.099,99 TL","fWholesalePrice":"769,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":1119.93,"retailPrice":1599.90,"fRetailPrice":"NIS 1,599.90","fWholesalePrice":"NIS 1,119.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":4912.27,"retailPrice":7999.99,"fRetailPrice":"R7,999.99","fWholesalePrice":"R4,912.27"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":1049.99,"retailPrice":1499.99,"fRetailPrice":"SR 1,499.99","fWholesalePrice":"SR 1,049.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":1049.99,"retailPrice":1499.99,"fRetailPrice":"AED 1,499.99","fWholesalePrice":"AED 1,049.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":174.99,"retailPrice":299.99,"fRetailPrice":"£299.99","fWholesalePrice":"£174.99"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":1679.44,"retailPrice":2999.00,"fRetailPrice":"2.999,00 kr","fWholesalePrice":"1.679,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":2405.20,"retailPrice":4295.00,"fRetailPrice":"4.295,00 kr","fWholesalePrice":"2.405,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":259.26,"retailPrice":400.00,"fRetailPrice":"CHF 400.00","fWholesalePrice":"CHF 259.26"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":2402.40,"retailPrice":4290.00,"fRetailPrice":"4.290,00 kr","fWholesalePrice":"2.402,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":239.31,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"239,31 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":237.28,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"237,28 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":235.29,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"235,29 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":235.29,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"235,29 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":233.33,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"233,33 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":233.33,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"233,33 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":233.33,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"233,33 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":233.33,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"233,33 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":233.33,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"233,33 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":231.40,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"231,40 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":231.40,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"231,40 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":231.40,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"231,40 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":231.40,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"231,40 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":231.40,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"231,40 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":231.40,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"231,40 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":229.50,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"229,50 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":229.50,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"229,50 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":227.64,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"227,64 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":227.64,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"227,64 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":227.64,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"227,64 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":227.64,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"227,64 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":225.80,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"225,80 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":233.33,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"233,33 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":220.47,"retailPrice":399.99,"fRetailPrice":"399,99 €","fWholesalePrice":"220,47 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":308.00,"retailPrice":439.99,"fRetailPrice":"$439.99","fWholesalePrice":"$308.00"}]},{"tierStem":"81","tierName":"Tier 81","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":315.00,"retailPrice":449.99,"fRetailPrice":"$449.99","fWholesalePrice":"$315.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":419.99,"retailPrice":599.99,"fRetailPrice":"$599.99","fWholesalePrice":"$419.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":5599.30,"retailPrice":7999.00,"fRetailPrice":"$7,999.00","fWholesalePrice":"$5,599.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":445.45,"retailPrice":699.99,"fRetailPrice":"$699.99","fWholesalePrice":"$445.45"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":454.99,"retailPrice":649.99,"fRetailPrice":"$649.99","fWholesalePrice":"$454.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":38360.00,"retailPrice":54800.00000,"fRetailPrice":"¥54,800","fWholesalePrice":"¥38,360"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":2056.85,"retailPrice":2998.00,"fRetailPrice":"¥2,998.00","fWholesalePrice":"¥2,056.85"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":454.29,"retailPrice":648.98,"fRetailPrice":"S$ 648.98","fWholesalePrice":"S$ 454.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":2441.60,"retailPrice":3488.00,"fRetailPrice":"HK$ 3,488.00","fWholesalePrice":"HK$ 2,441.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":9030.00,"retailPrice":12900.00,"fRetailPrice":"NT$ 12,900","fWholesalePrice":"NT$ 9,030"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":4619300.00,"retailPrice":6599000.00,"fRetailPrice":"Rp 6,599juta","fWholesalePrice":"Rp 4.619.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":19530.00,"retailPrice":27900.00,"fRetailPrice":"Rs 27,900","fWholesalePrice":"Rs 19,530"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":24493.00,"retailPrice":34990.00,"fRetailPrice":"34 990 р.","fWholesalePrice":"24 493 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":839.99,"retailPrice":1199.99,"fRetailPrice":"1.199,99 TL","fWholesalePrice":"839,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":1259.93,"retailPrice":1799.90,"fRetailPrice":"NIS 1,799.90","fWholesalePrice":"NIS 1,259.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":5526.31,"retailPrice":8999.99,"fRetailPrice":"R8,999.99","fWholesalePrice":"R5,526.31"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":1119.99,"retailPrice":1599.99,"fRetailPrice":"SR 1,599.99","fWholesalePrice":"SR 1,119.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":1119.99,"retailPrice":1599.99,"fRetailPrice":"AED 1,599.99","fWholesalePrice":"AED 1,119.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":204.16,"retailPrice":349.99,"fRetailPrice":"£349.99","fWholesalePrice":"£204.16"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":1959.44,"retailPrice":3499.00,"fRetailPrice":"3.499,00 kr","fWholesalePrice":"1.959,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":2685.20,"retailPrice":4795.00,"fRetailPrice":"4.795,00 kr","fWholesalePrice":"2.685,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":291.67,"retailPrice":450.00,"fRetailPrice":"CHF 450.00","fWholesalePrice":"CHF 291.67"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":2682.40,"retailPrice":4790.00,"fRetailPrice":"4.790,00 kr","fWholesalePrice":"2.682,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":269.22,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"269,22 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":266.94,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"266,94 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":264.70,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"264,70 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":264.70,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"264,70 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":262.49,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"262,49 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":262.49,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"262,49 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":262.49,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"262,49 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":262.49,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"262,49 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":262.49,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"262,49 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":260.32,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"260,32 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":260.32,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"260,32 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":260.32,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"260,32 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":260.32,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"260,32 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":260.32,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"260,32 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":260.32,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"260,32 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":258.19,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"258,19 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":258.19,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"258,19 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":256.09,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"256,09 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":256.09,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"256,09 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":256.09,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"256,09 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":256.09,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"256,09 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":254.03,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"254,03 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":262.49,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"262,49 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":248.03,"retailPrice":449.99,"fRetailPrice":"449,99 €","fWholesalePrice":"248,03 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":346.50,"retailPrice":494.99,"fRetailPrice":"$494.99","fWholesalePrice":"$346.50"}]},{"tierStem":"82","tierName":"Tier 82","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":350.00,"retailPrice":499.99,"fRetailPrice":"$499.99","fWholesalePrice":"$350.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":489.99,"retailPrice":699.99,"fRetailPrice":"$699.99","fWholesalePrice":"$489.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":6299.30,"retailPrice":8999.00,"fRetailPrice":"$8,999.00","fWholesalePrice":"$6,299.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":509.08,"retailPrice":799.99,"fRetailPrice":"$799.99","fWholesalePrice":"$509.08"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":524.99,"retailPrice":749.99,"fRetailPrice":"$749.99","fWholesalePrice":"$524.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":41160.00,"retailPrice":58800.00000,"fRetailPrice":"¥58,800","fWholesalePrice":"¥41,160"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":2262.67,"retailPrice":3298.00,"fRetailPrice":"¥3,298.00","fWholesalePrice":"¥2,262.67"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":482.29,"retailPrice":688.98,"fRetailPrice":"S$ 688.98","fWholesalePrice":"S$ 482.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":2721.60,"retailPrice":3888.00,"fRetailPrice":"HK$ 3,888.00","fWholesalePrice":"HK$ 2,721.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":10430.00,"retailPrice":14900.00,"fRetailPrice":"NT$ 14,900","fWholesalePrice":"NT$ 10,430"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":5179300.00,"retailPrice":7399000.00,"fRetailPrice":"Rp 7,399juta","fWholesalePrice":"Rp 5.179.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":21630.00,"retailPrice":30900.00,"fRetailPrice":"Rs 30,900","fWholesalePrice":"Rs 21,630"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":26593.00,"retailPrice":37990.00,"fRetailPrice":"37 990 р.","fWholesalePrice":"26 593 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":909.99,"retailPrice":1299.99,"fRetailPrice":"1.299,99 TL","fWholesalePrice":"909,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":1399.93,"retailPrice":1999.90,"fRetailPrice":"NIS 1,999.90","fWholesalePrice":"NIS 1,399.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":6140.34,"retailPrice":9999.99,"fRetailPrice":"R9,999.99","fWholesalePrice":"R6,140.34"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":1259.99,"retailPrice":1799.99,"fRetailPrice":"SR 1,799.99","fWholesalePrice":"SR 1,259.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":1259.99,"retailPrice":1799.99,"fRetailPrice":"AED 1,799.99","fWholesalePrice":"AED 1,259.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":233.33,"retailPrice":399.99,"fRetailPrice":"£399.99","fWholesalePrice":"£233.33"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":2239.44,"retailPrice":3999.00,"fRetailPrice":"3.999,00 kr","fWholesalePrice":"2.239,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":3077.20,"retailPrice":5495.00,"fRetailPrice":"5.495,00 kr","fWholesalePrice":"3.077,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":324.07,"retailPrice":500.00,"fRetailPrice":"CHF 500.00","fWholesalePrice":"CHF 324.07"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":3074.40,"retailPrice":5490.00,"fRetailPrice":"5.490,00 kr","fWholesalePrice":"3.074,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":299.14,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"299,14 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":296.60,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"296,60 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":294.11,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"294,11 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":294.11,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"294,11 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":291.66,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"291,66 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":291.66,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"291,66 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":291.66,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"291,66 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":291.66,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"291,66 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":291.66,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"291,66 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":289.25,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"289,25 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":289.25,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"289,25 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":289.25,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"289,25 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":289.25,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"289,25 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":289.25,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"289,25 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":289.25,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"289,25 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":286.88,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"286,88 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":286.88,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"286,88 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":284.55,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"284,55 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":284.55,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"284,55 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":284.55,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"284,55 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":284.55,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"284,55 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":282.25,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"282,25 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":291.66,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"291,66 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":275.59,"retailPrice":499.99,"fRetailPrice":"499,99 €","fWholesalePrice":"275,59 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":385.00,"retailPrice":549.99,"fRetailPrice":"$549.99","fWholesalePrice":"$385.00"}]},{"tierStem":"83","tierName":"Tier 83","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":420.00,"retailPrice":599.99,"fRetailPrice":"$599.99","fWholesalePrice":"$420.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":594.99,"retailPrice":849.99,"fRetailPrice":"$849.99","fWholesalePrice":"$594.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":6999.30,"retailPrice":9999.00,"fRetailPrice":"$9,999.00","fWholesalePrice":"$6,999.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":572.72,"retailPrice":899.99,"fRetailPrice":"$899.99","fWholesalePrice":"$572.72"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":629.99,"retailPrice":899.99,"fRetailPrice":"$899.99","fWholesalePrice":"$629.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":52360.00,"retailPrice":74800.00000,"fRetailPrice":"¥74,800","fWholesalePrice":"¥52,360"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":2742.92,"retailPrice":3998.00,"fRetailPrice":"¥3,998.00","fWholesalePrice":"¥2,742.92"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":622.29,"retailPrice":888.98,"fRetailPrice":"S$ 888.98","fWholesalePrice":"S$ 622.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":3141.60,"retailPrice":4488.00,"fRetailPrice":"HK$ 4,488.00","fWholesalePrice":"HK$ 3,141.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":12530.00,"retailPrice":17900.00,"fRetailPrice":"NT$ 17,900","fWholesalePrice":"NT$ 12,530"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":6299300.00,"retailPrice":8999000.00,"fRetailPrice":"Rp 8,999juta","fWholesalePrice":"Rp 6.299.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":26530.00,"retailPrice":37900.00,"fRetailPrice":"Rs 37,900","fWholesalePrice":"Rs 26,530"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":31493.00,"retailPrice":44990.00,"fRetailPrice":"44 990 р.","fWholesalePrice":"31 493 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":1119.99,"retailPrice":1599.99,"fRetailPrice":"1.599,99 TL","fWholesalePrice":"1.119,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":1679.93,"retailPrice":2399.90,"fRetailPrice":"NIS 2,399.90","fWholesalePrice":"NIS 1,679.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":7368.42,"retailPrice":11999.99,"fRetailPrice":"R11,999.99","fWholesalePrice":"R7,368.42"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":1539.99,"retailPrice":2199.99,"fRetailPrice":"SR 2,199.99","fWholesalePrice":"SR 1,539.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":1539.99,"retailPrice":2199.99,"fRetailPrice":"AED 2,199.99","fWholesalePrice":"AED 1,539.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":262.49,"retailPrice":449.99,"fRetailPrice":"£449.99","fWholesalePrice":"£262.49"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":2519.44,"retailPrice":4499.00,"fRetailPrice":"4.499,00 kr","fWholesalePrice":"2.519,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":3637.20,"retailPrice":6495.00,"fRetailPrice":"6.495,00 kr","fWholesalePrice":"3.637,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":388.89,"retailPrice":600.00,"fRetailPrice":"CHF 600.00","fWholesalePrice":"CHF 388.89"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":3634.40,"retailPrice":6490.00,"fRetailPrice":"6.490,00 kr","fWholesalePrice":"3.634,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":358.97,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"358,97 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":355.93,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"355,93 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":352.94,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"352,94 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":352.94,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"352,94 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":349.99,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"349,99 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":349.99,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"349,99 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":349.99,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"349,99 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":349.99,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"349,99 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":349.99,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"349,99 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":347.10,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"347,10 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":347.10,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"347,10 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":347.10,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"347,10 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":347.10,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"347,10 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":347.10,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"347,10 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":347.10,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"347,10 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":344.26,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"344,26 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":344.26,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"344,26 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":341.46,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"341,46 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":341.46,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"341,46 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":341.46,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"341,46 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":341.46,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"341,46 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":338.70,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"338,70 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":349.99,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"349,99 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":330.70,"retailPrice":599.99,"fRetailPrice":"599,99 €","fWholesalePrice":"330,70 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":462.00,"retailPrice":659.99,"fRetailPrice":"$659.99","fWholesalePrice":"$462.00"}]},{"tierStem":"84","tierName":"Tier 84","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":490.00,"retailPrice":699.99,"fRetailPrice":"$699.99","fWholesalePrice":"$490.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":699.99,"retailPrice":999.99,"fRetailPrice":"$999.99","fWholesalePrice":"$699.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":8399.30,"retailPrice":11999.00,"fRetailPrice":"$11,999.00","fWholesalePrice":"$8,399.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":699.99,"retailPrice":1099.99,"fRetailPrice":"$1,099.99","fWholesalePrice":"$699.99"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":699.99,"retailPrice":999.99,"fRetailPrice":"$999.99","fWholesalePrice":"$699.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":59360.00,"retailPrice":84800.00000,"fRetailPrice":"¥84,800","fWholesalePrice":"¥59,360"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":3085.96,"retailPrice":4498.00,"fRetailPrice":"¥4,498.00","fWholesalePrice":"¥3,085.96"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":692.29,"retailPrice":988.98,"fRetailPrice":"S$ 988.98","fWholesalePrice":"S$ 692.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":3491.60,"retailPrice":4988.00,"fRetailPrice":"HK$ 4,988.00","fWholesalePrice":"HK$ 3,491.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":14630.00,"retailPrice":20900.00,"fRetailPrice":"NT$ 20,900","fWholesalePrice":"NT$ 14,630"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":6999300.00,"retailPrice":9999000.00,"fRetailPrice":"Rp 9,999juta","fWholesalePrice":"Rp 6.999.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":31430.00,"retailPrice":44900.00,"fRetailPrice":"Rs 44,900","fWholesalePrice":"Rs 31,430"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":38493.00,"retailPrice":54990.00,"fRetailPrice":"54 990 р.","fWholesalePrice":"38 493 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":1329.99,"retailPrice":1899.99,"fRetailPrice":"1.899,99 TL","fWholesalePrice":"1.329,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":1959.93,"retailPrice":2799.90,"fRetailPrice":"NIS 2,799.90","fWholesalePrice":"NIS 1,959.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":8596.49,"retailPrice":13999.99,"fRetailPrice":"R13,999.99","fWholesalePrice":"R8,596.49"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":1749.99,"retailPrice":2499.99,"fRetailPrice":"SR 2,499.99","fWholesalePrice":"SR 1,749.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":1749.99,"retailPrice":2499.99,"fRetailPrice":"AED 2,499.99","fWholesalePrice":"AED 1,749.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":291.66,"retailPrice":499.99,"fRetailPrice":"£499.99","fWholesalePrice":"£291.66"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":2799.44,"retailPrice":4999.00,"fRetailPrice":"4.999,00 kr","fWholesalePrice":"2.799,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":4197.20,"retailPrice":7495.00,"fRetailPrice":"7.495,00 kr","fWholesalePrice":"4.197,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":453.70,"retailPrice":700.00,"fRetailPrice":"CHF 700.00","fWholesalePrice":"CHF 453.70"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":4194.40,"retailPrice":7490.00,"fRetailPrice":"7.490,00 kr","fWholesalePrice":"4.194,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":418.80,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"418,80 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":415.25,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"415,25 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":411.76,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"411,76 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":411.76,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"411,76 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":408.33,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"408,33 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":408.33,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"408,33 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":408.33,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"408,33 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":408.33,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"408,33 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":408.33,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"408,33 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":404.95,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"404,95 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":404.95,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"404,95 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":404.95,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"404,95 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":404.95,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"404,95 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":404.95,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"404,95 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":404.95,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"404,95 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":401.63,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"401,63 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":401.63,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"401,63 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":398.37,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"398,37 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":398.37,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"398,37 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":398.37,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"398,37 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":398.37,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"398,37 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":395.16,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"395,16 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":408.33,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"408,33 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":385.82,"retailPrice":699.99,"fRetailPrice":"699,99 €","fWholesalePrice":"385,82 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":539.00,"retailPrice":769.99,"fRetailPrice":"$769.99","fWholesalePrice":"$539.00"}]},{"tierStem":"85","tierName":"Tier 85","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":560.00,"retailPrice":799.99,"fRetailPrice":"$799.99","fWholesalePrice":"$560.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":769.99,"retailPrice":1099.99,"fRetailPrice":"$1,099.99","fWholesalePrice":"$769.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":9799.30,"retailPrice":13999.00,"fRetailPrice":"$13,999.00","fWholesalePrice":"$9,799.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":795.45,"retailPrice":1249.99,"fRetailPrice":"$1,249.99","fWholesalePrice":"$795.45"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":839.99,"retailPrice":1199.99,"fRetailPrice":"$1,199.99","fWholesalePrice":"$839.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":69160.00,"retailPrice":98800.00000,"fRetailPrice":"¥98,800","fWholesalePrice":"¥69,160"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":3428.99,"retailPrice":4998.00,"fRetailPrice":"¥4,998.00","fWholesalePrice":"¥3,428.99"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":762.29,"retailPrice":1088.98,"fRetailPrice":"S$ 1,088.98","fWholesalePrice":"S$ 762.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":4191.60,"retailPrice":5988.00,"fRetailPrice":"HK$ 5,988.00","fWholesalePrice":"HK$ 4,191.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":16730.00,"retailPrice":23900.00,"fRetailPrice":"NT$ 23,900","fWholesalePrice":"NT$ 16,730"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":8399300.00,"retailPrice":11999000.00,"fRetailPrice":"Rp 11,999juta","fWholesalePrice":"Rp 8.399.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":34930.00,"retailPrice":49900.00,"fRetailPrice":"Rs 49,900","fWholesalePrice":"Rs 34,930"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":41993.00,"retailPrice":59990.00,"fRetailPrice":"59 990 р.","fWholesalePrice":"41 993 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":1469.99,"retailPrice":2099.99,"fRetailPrice":"2.099,99 TL","fWholesalePrice":"1.469,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":2239.93,"retailPrice":3199.90,"fRetailPrice":"NIS 3,199.90","fWholesalePrice":"NIS 2,239.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":9824.56,"retailPrice":15999.99,"fRetailPrice":"R15,999.99","fWholesalePrice":"R9,824.56"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":2099.99,"retailPrice":2999.99,"fRetailPrice":"SR 2,999.99","fWholesalePrice":"SR 2,099.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":2099.99,"retailPrice":2999.99,"fRetailPrice":"AED 2,999.99","fWholesalePrice":"AED 2,099.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":349.99,"retailPrice":599.99,"fRetailPrice":"£599.99","fWholesalePrice":"£349.99"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":3359.44,"retailPrice":5999.00,"fRetailPrice":"5.999,00 kr","fWholesalePrice":"3.359,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":4757.20,"retailPrice":8495.00,"fRetailPrice":"8.495,00 kr","fWholesalePrice":"4.757,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":518.52,"retailPrice":800.00,"fRetailPrice":"CHF 800.00","fWholesalePrice":"CHF 518.52"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":4754.40,"retailPrice":8490.00,"fRetailPrice":"8.490,00 kr","fWholesalePrice":"4.754,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":478.63,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"478,63 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":474.57,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"474,57 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":470.58,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"470,58 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":470.58,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"470,58 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":466.66,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"466,66 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":466.66,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"466,66 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":466.66,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"466,66 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":466.66,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"466,66 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":466.66,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"466,66 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":462.80,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"462,80 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":462.80,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"462,80 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":462.80,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"462,80 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":462.80,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"462,80 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":462.80,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"462,80 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":462.80,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"462,80 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":459.01,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"459,01 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":459.01,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"459,01 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":455.28,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"455,28 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":455.28,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"455,28 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":455.28,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"455,28 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":455.28,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"455,28 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":451.61,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"451,61 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":466.66,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"466,66 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":440.94,"retailPrice":799.99,"fRetailPrice":"799,99 €","fWholesalePrice":"440,94 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":616.00,"retailPrice":879.99,"fRetailPrice":"$879.99","fWholesalePrice":"$616.00"}]},{"tierStem":"86","tierName":"Tier 86","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":630.00,"retailPrice":899.99,"fRetailPrice":"$899.99","fWholesalePrice":"$630.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":839.99,"retailPrice":1199.99,"fRetailPrice":"$1,199.99","fWholesalePrice":"$839.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":11199.30,"retailPrice":15999.00,"fRetailPrice":"$15,999.00","fWholesalePrice":"$11,199.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":890.90,"retailPrice":1399.99,"fRetailPrice":"$1,399.99","fWholesalePrice":"$890.90"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":909.99,"retailPrice":1299.99,"fRetailPrice":"$1,299.99","fWholesalePrice":"$909.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":76160.00,"retailPrice":108800.00000,"fRetailPrice":"¥108,800","fWholesalePrice":"¥76,160"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":4046.46,"retailPrice":5898.00,"fRetailPrice":"¥5,898.00","fWholesalePrice":"¥4,046.46"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":902.29,"retailPrice":1288.98,"fRetailPrice":"S$ 1,288.98","fWholesalePrice":"S$ 902.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":4891.60,"retailPrice":6988.00,"fRetailPrice":"HK$ 6,988.00","fWholesalePrice":"HK$ 4,891.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":18830.00,"retailPrice":26900.00,"fRetailPrice":"NT$ 26,900","fWholesalePrice":"NT$ 18,830"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":9099300.00,"retailPrice":12999000.00,"fRetailPrice":"Rp 12,999juta","fWholesalePrice":"Rp 9.099.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":38430.00,"retailPrice":54900.00,"fRetailPrice":"Rs 54,900","fWholesalePrice":"Rs 38,430"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":48993.00,"retailPrice":69990.00,"fRetailPrice":"69 990 р.","fWholesalePrice":"48 993 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":1679.99,"retailPrice":2399.99,"fRetailPrice":"2.399,99 TL","fWholesalePrice":"1.679,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":2519.93,"retailPrice":3599.90,"fRetailPrice":"NIS 3,599.90","fWholesalePrice":"NIS 2,519.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":11052.63,"retailPrice":17999.99,"fRetailPrice":"R17,999.99","fWholesalePrice":"R11,052.63"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":2309.99,"retailPrice":3299.99,"fRetailPrice":"SR 3,299.99","fWholesalePrice":"SR 2,309.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":2309.99,"retailPrice":3299.99,"fRetailPrice":"AED 3,299.99","fWholesalePrice":"AED 2,309.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":408.33,"retailPrice":699.99,"fRetailPrice":"£699.99","fWholesalePrice":"£408.33"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":3919.44,"retailPrice":6999.00,"fRetailPrice":"6.999,00 kr","fWholesalePrice":"3.919,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":5317.20,"retailPrice":9495.00,"fRetailPrice":"9.495,00 kr","fWholesalePrice":"5.317,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":583.33,"retailPrice":900.00,"fRetailPrice":"CHF 900.00","fWholesalePrice":"CHF 583.33"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":5314.40,"retailPrice":9490.00,"fRetailPrice":"9.490,00 kr","fWholesalePrice":"5.314,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":538.46,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"538,46 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":533.89,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"533,89 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":529.41,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"529,41 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":529.41,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"529,41 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":524.99,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"524,99 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":524.99,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"524,99 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":524.99,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"524,99 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":524.99,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"524,99 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":524.99,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"524,99 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":520.66,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"520,66 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":520.66,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"520,66 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":520.66,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"520,66 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":520.66,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"520,66 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":520.66,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"520,66 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":520.66,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"520,66 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":516.39,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"516,39 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":516.39,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"516,39 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":512.19,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"512,19 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":512.19,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"512,19 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":512.19,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"512,19 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":512.19,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"512,19 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":508.06,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"508,06 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":524.99,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"524,99 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":496.06,"retailPrice":899.99,"fRetailPrice":"899,99 €","fWholesalePrice":"496,06 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":693.00,"retailPrice":989.99,"fRetailPrice":"$989.99","fWholesalePrice":"$693.00"}]},{"tierStem":"87","tierName":"Tier 87","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":700.00,"retailPrice":999.99,"fRetailPrice":"$999.99","fWholesalePrice":"$700.00"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":979.99,"retailPrice":1399.99,"fRetailPrice":"$1,399.99","fWholesalePrice":"$979.99"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":11899.30,"retailPrice":16999.00,"fRetailPrice":"$16,999.00","fWholesalePrice":"$11,899.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":1018.18,"retailPrice":1599.99,"fRetailPrice":"$1,599.99","fWholesalePrice":"$1,018.18"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":1049.99,"retailPrice":1499.99,"fRetailPrice":"$1,499.99","fWholesalePrice":"$1,049.99"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":83160.00,"retailPrice":118800.00000,"fRetailPrice":"¥118,800","fWholesalePrice":"¥83,160"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":4458.10,"retailPrice":6498.00,"fRetailPrice":"¥6,498.00","fWholesalePrice":"¥4,458.10"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":1042.29,"retailPrice":1488.98,"fRetailPrice":"S$ 1,488.98","fWholesalePrice":"S$ 1,042.29"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":5521.60,"retailPrice":7888.00,"fRetailPrice":"HK$ 7,888.00","fWholesalePrice":"HK$ 5,521.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":20930.00,"retailPrice":29900.00,"fRetailPrice":"NT$ 29,900","fWholesalePrice":"NT$ 20,930"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":10499300.00,"retailPrice":14999000.00,"fRetailPrice":"Rp 14,999juta","fWholesalePrice":"Rp 10.499.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":43330.00,"retailPrice":61900.00,"fRetailPrice":"Rs 61,900","fWholesalePrice":"Rs 43,330"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":52493.00,"retailPrice":74990.00,"fRetailPrice":"74 990 р.","fWholesalePrice":"52 493 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":1889.99,"retailPrice":2699.99,"fRetailPrice":"2.699,99 TL","fWholesalePrice":"1.889,99 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":2799.93,"retailPrice":3999.90,"fRetailPrice":"NIS 3,999.90","fWholesalePrice":"NIS 2,799.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":12280.70,"retailPrice":19999.99,"fRetailPrice":"R19,999.99","fWholesalePrice":"R12,280.70"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":2589.99,"retailPrice":3699.99,"fRetailPrice":"SR 3,699.99","fWholesalePrice":"SR 2,589.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":2589.99,"retailPrice":3699.99,"fRetailPrice":"AED 3,699.99","fWholesalePrice":"AED 2,589.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":437.49,"retailPrice":749.99,"fRetailPrice":"£749.99","fWholesalePrice":"£437.49"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":4479.44,"retailPrice":7999.00,"fRetailPrice":"7.999,00 kr","fWholesalePrice":"4.479,44 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":6157.20,"retailPrice":10995.00,"fRetailPrice":"10.995,00 kr","fWholesalePrice":"6.157,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":648.15,"retailPrice":1000.00,"fRetailPrice":"CHF 1,000.00","fWholesalePrice":"CHF 648.15"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":6154.40,"retailPrice":10990.00,"fRetailPrice":"10.990,00 kr","fWholesalePrice":"6.154,40 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":598.28,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"598,28 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":593.21,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"593,21 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":588.23,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"588,23 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":588.23,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"588,23 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":583.33,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"583,33 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":583.33,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"583,33 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":583.33,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"583,33 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":583.33,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"583,33 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":583.33,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"583,33 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":578.51,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"578,51 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":578.51,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"578,51 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":578.51,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"578,51 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":578.51,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"578,51 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":578.51,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"578,51 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":578.51,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"578,51 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":573.76,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"573,76 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":573.76,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"573,76 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":569.10,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"569,10 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":569.10,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"569,10 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":569.10,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"569,10 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":569.10,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"569,10 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":564.51,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"564,51 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":583.33,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"583,33 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":551.18,"retailPrice":999.99,"fRetailPrice":"999,99 €","fWholesalePrice":"551,18 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":770.00,"retailPrice":1099.99,"fRetailPrice":"$1,099.99","fWholesalePrice":"$770.00"}]},{"tierStem":"510","tierName":"Alternate Tier A","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":0.70,"retailPrice":0.99,"fRetailPrice":"$0.99","fWholesalePrice":"$0.70"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":0.69,"retailPrice":0.99,"fRetailPrice":"$0.99","fWholesalePrice":"$0.69"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":3.50,"retailPrice":5.00,"fRetailPrice":"$5.00","fWholesalePrice":"$3.50"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":0.63,"retailPrice":0.99,"fRetailPrice":"$0.99","fWholesalePrice":"$0.63"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":0.69,"retailPrice":0.99,"fRetailPrice":"$0.99","fWholesalePrice":"$0.69"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":84.00,"retailPrice":120.00000,"fRetailPrice":"¥120","fWholesalePrice":"¥84"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":0.69,"retailPrice":1.00,"fRetailPrice":"¥1.00","fWholesalePrice":"¥0.69"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":1.04,"retailPrice":1.48,"fRetailPrice":"S$ 1.48","fWholesalePrice":"S$ 1.04"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":5.60,"retailPrice":8.00,"fRetailPrice":"HK$ 8.00","fWholesalePrice":"HK$ 5.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":21.00,"retailPrice":30.00,"fRetailPrice":"NT$ 30","fWholesalePrice":"NT$ 21"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":2100.00,"retailPrice":3000.00,"fRetailPrice":"Rp 3ribu","fWholesalePrice":"Rp 2.100"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":7.00,"retailPrice":10.00,"fRetailPrice":"Rs 10","fWholesalePrice":"Rs 7"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":10.50,"retailPrice":15.00,"fRetailPrice":"15 р.","fWholesalePrice":"10,50 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":0.41,"retailPrice":0.59,"fRetailPrice":"0,59 TL","fWholesalePrice":"0,41 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":2.73,"retailPrice":3.90,"fRetailPrice":"NIS 3.90","fWholesalePrice":"NIS 2.73"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":2.45,"retailPrice":3.99,"fRetailPrice":"R3.99","fWholesalePrice":"R2.45"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":2.58,"retailPrice":3.69,"fRetailPrice":"SR 3.69","fWholesalePrice":"SR 2.58"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":2.58,"retailPrice":3.69,"fRetailPrice":"AED 3.69","fWholesalePrice":"AED 2.58"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":0.46,"retailPrice":0.79,"fRetailPrice":"£0.79","fWholesalePrice":"£0.46"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":4.48,"retailPrice":8.00,"fRetailPrice":"8,00 kr","fWholesalePrice":"4,48 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":5.60,"retailPrice":10.00,"fRetailPrice":"10,00 kr","fWholesalePrice":"5,60 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":0.65,"retailPrice":1.00,"fRetailPrice":"CHF 1.00","fWholesalePrice":"CHF 0.65"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":6.16,"retailPrice":11.00,"fRetailPrice":"11,00 kr","fWholesalePrice":"6,16 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.59,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,59 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.59,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,59 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.55,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,55 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":0.77,"retailPrice":1.09,"fRetailPrice":"$1.09","fWholesalePrice":"$0.77"}]},{"tierStem":"530","tierName":"Alternate Tier B","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":0.70,"retailPrice":0.99,"fRetailPrice":"$0.99","fWholesalePrice":"$0.70"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":0.69,"retailPrice":0.99,"fRetailPrice":"$0.99","fWholesalePrice":"$0.69"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":6.30,"retailPrice":9.00,"fRetailPrice":"$9.00","fWholesalePrice":"$6.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":0.63,"retailPrice":0.99,"fRetailPrice":"$0.99","fWholesalePrice":"$0.63"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":0.69,"retailPrice":0.99,"fRetailPrice":"$0.99","fWholesalePrice":"$0.69"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":84.00,"retailPrice":120.00000,"fRetailPrice":"¥120","fWholesalePrice":"¥84"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":2.06,"retailPrice":3.00,"fRetailPrice":"¥3.00","fWholesalePrice":"¥2.06"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":1.04,"retailPrice":1.48,"fRetailPrice":"S$ 1.48","fWholesalePrice":"S$ 1.04"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":5.60,"retailPrice":8.00,"fRetailPrice":"HK$ 8.00","fWholesalePrice":"HK$ 5.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":21.00,"retailPrice":30.00,"fRetailPrice":"NT$ 30","fWholesalePrice":"NT$ 21"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":3500.00,"retailPrice":5000.00,"fRetailPrice":"Rp 5ribu","fWholesalePrice":"Rp 3.500"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":21.00,"retailPrice":30.00,"fRetailPrice":"Rs 30","fWholesalePrice":"Rs 21"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":20.30,"retailPrice":29.00,"fRetailPrice":"29 р.","fWholesalePrice":"20,30 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":0.90,"retailPrice":1.29,"fRetailPrice":"1,29 TL","fWholesalePrice":"0,90 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":2.73,"retailPrice":3.90,"fRetailPrice":"NIS 3.90","fWholesalePrice":"NIS 2.73"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":4.29,"retailPrice":6.99,"fRetailPrice":"R6.99","fWholesalePrice":"R4.29"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":2.58,"retailPrice":3.69,"fRetailPrice":"SR 3.69","fWholesalePrice":"SR 2.58"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":2.58,"retailPrice":3.69,"fRetailPrice":"AED 3.69","fWholesalePrice":"AED 2.58"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":0.46,"retailPrice":0.79,"fRetailPrice":"£0.79","fWholesalePrice":"£0.46"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":4.48,"retailPrice":8.00,"fRetailPrice":"8,00 kr","fWholesalePrice":"4,48 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":5.60,"retailPrice":10.00,"fRetailPrice":"10,00 kr","fWholesalePrice":"5,60 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":0.65,"retailPrice":1.00,"fRetailPrice":"CHF 1.00","fWholesalePrice":"CHF 0.65"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":6.16,"retailPrice":11.00,"fRetailPrice":"11,00 kr","fWholesalePrice":"6,16 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.59,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,59 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.59,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,59 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.55,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,55 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":0.77,"retailPrice":1.09,"fRetailPrice":"$1.09","fWholesalePrice":"$0.77"}]},{"tierStem":"550","tierName":"Alternate Tier 1","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":0.70,"retailPrice":0.99,"fRetailPrice":"$0.99","fWholesalePrice":"$0.70"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":1.04,"retailPrice":1.49,"fRetailPrice":"$1.49","fWholesalePrice":"$1.04"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":11.90,"retailPrice":17.00,"fRetailPrice":"$17.00","fWholesalePrice":"$11.90"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":1.27,"retailPrice":1.99,"fRetailPrice":"$1.99","fWholesalePrice":"$1.27"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":1.04,"retailPrice":1.49,"fRetailPrice":"$1.49","fWholesalePrice":"$1.04"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":105.00,"retailPrice":150.00000,"fRetailPrice":"¥150","fWholesalePrice":"¥105"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":5.49,"retailPrice":8.00,"fRetailPrice":"¥8.00","fWholesalePrice":"¥5.49"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":1.04,"retailPrice":1.48,"fRetailPrice":"S$ 1.48","fWholesalePrice":"S$ 1.04"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":5.60,"retailPrice":8.00,"fRetailPrice":"HK$ 8.00","fWholesalePrice":"HK$ 5.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":21.00,"retailPrice":30.00,"fRetailPrice":"NT$ 30","fWholesalePrice":"NT$ 21"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":10500.00,"retailPrice":15000.00,"fRetailPrice":"Rp 15ribu","fWholesalePrice":"Rp 10.500"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":42.00,"retailPrice":60.00,"fRetailPrice":"Rs 60","fWholesalePrice":"Rs 42"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":52.50,"retailPrice":75.00,"fRetailPrice":"75 р.","fWholesalePrice":"52,50 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":2.09,"retailPrice":2.99,"fRetailPrice":"2,99 TL","fWholesalePrice":"2,09 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":2.73,"retailPrice":3.90,"fRetailPrice":"NIS 3.90","fWholesalePrice":"NIS 2.73"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":11.66,"retailPrice":18.99,"fRetailPrice":"R18.99","fWholesalePrice":"R11.66"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":2.79,"retailPrice":3.99,"fRetailPrice":"SR 3.99","fWholesalePrice":"SR 2.79"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":2.79,"retailPrice":3.99,"fRetailPrice":"AED 3.99","fWholesalePrice":"AED 2.79"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"£0.99","fWholesalePrice":"£0.58"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":5.04,"retailPrice":9.00,"fRetailPrice":"9,00 kr","fWholesalePrice":"5,04 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":5.60,"retailPrice":10.00,"fRetailPrice":"10,00 kr","fWholesalePrice":"5,60 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":0.65,"retailPrice":1.00,"fRetailPrice":"CHF 1.00","fWholesalePrice":"CHF 0.65"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":6.16,"retailPrice":11.00,"fRetailPrice":"11,00 kr","fWholesalePrice":"6,16 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.59,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,59 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.59,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,59 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.57,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,57 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.56,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,56 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.58,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,58 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":0.55,"retailPrice":0.99,"fRetailPrice":"0,99 €","fWholesalePrice":"0,55 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":0.77,"retailPrice":1.09,"fRetailPrice":"$1.09","fWholesalePrice":"$0.77"}]},{"tierStem":"560","tierName":"Alternate Tier 2","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":1.40,"retailPrice":1.99,"fRetailPrice":"$1.99","fWholesalePrice":"$1.40"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":2.09,"retailPrice":2.99,"fRetailPrice":"$2.99","fWholesalePrice":"$2.09"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":24.50,"retailPrice":35.00,"fRetailPrice":"$35.00","fWholesalePrice":"$24.50"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":2.54,"retailPrice":3.99,"fRetailPrice":"$3.99","fWholesalePrice":"$2.54"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":2.09,"retailPrice":2.99,"fRetailPrice":"$2.99","fWholesalePrice":"$2.09"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":175.00,"retailPrice":250.00000,"fRetailPrice":"¥250","fWholesalePrice":"¥175"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":8.23,"retailPrice":12.00,"fRetailPrice":"¥12.00","fWholesalePrice":"¥8.23"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":2.09,"retailPrice":2.98,"fRetailPrice":"S$ 2.98","fWholesalePrice":"S$ 2.09"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":12.60,"retailPrice":18.00,"fRetailPrice":"HK$ 18.00","fWholesalePrice":"HK$ 12.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":42.00,"retailPrice":60.00,"fRetailPrice":"NT$ 60","fWholesalePrice":"NT$ 42"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":20300.00,"retailPrice":29000.00,"fRetailPrice":"Rp 29ribu","fWholesalePrice":"Rp 20.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":105.00,"retailPrice":150.00,"fRetailPrice":"Rs 150","fWholesalePrice":"Rs 105"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":104.30,"retailPrice":149.00,"fRetailPrice":"149 р.","fWholesalePrice":"104,30 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":3.84,"retailPrice":5.49,"fRetailPrice":"5,49 TL","fWholesalePrice":"3,84 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":5.53,"retailPrice":7.90,"fRetailPrice":"NIS 7.90","fWholesalePrice":"NIS 5.53"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":23.33,"retailPrice":37.99,"fRetailPrice":"R37.99","fWholesalePrice":"R23.33"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":5.59,"retailPrice":7.99,"fRetailPrice":"SR 7.99","fWholesalePrice":"SR 5.59"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":5.59,"retailPrice":7.99,"fRetailPrice":"AED 7.99","fWholesalePrice":"AED 5.59"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":1.16,"retailPrice":1.99,"fRetailPrice":"£1.99","fWholesalePrice":"£1.16"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":10.64,"retailPrice":19.00,"fRetailPrice":"19,00 kr","fWholesalePrice":"10,64 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":11.20,"retailPrice":20.00,"fRetailPrice":"20,00 kr","fWholesalePrice":"11,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":1.30,"retailPrice":2.00,"fRetailPrice":"CHF 2.00","fWholesalePrice":"CHF 1.30"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":12.32,"retailPrice":22.00,"fRetailPrice":"22,00 kr","fWholesalePrice":"12,32 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.19,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,19 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.18,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,18 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.17,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,17 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.17,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,17 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.16,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,16 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.16,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,16 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.16,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,16 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.16,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,16 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.16,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,16 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.15,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,15 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.15,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,15 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.15,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,15 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.15,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,15 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.15,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,15 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.15,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,15 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.14,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,14 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.14,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,14 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.13,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,13 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.13,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,13 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.13,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,13 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.13,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,13 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.12,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,12 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.16,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,16 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.10,"retailPrice":1.99,"fRetailPrice":"1,99 €","fWholesalePrice":"1,10 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":1.54,"retailPrice":2.19,"fRetailPrice":"$2.19","fWholesalePrice":"$1.54"}]},{"tierStem":"570","tierName":"Alternate Tier 3","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":2.10,"retailPrice":2.99,"fRetailPrice":"$2.99","fWholesalePrice":"$2.10"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":2.79,"retailPrice":3.99,"fRetailPrice":"$3.99","fWholesalePrice":"$2.79"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":34.30,"retailPrice":49.00,"fRetailPrice":"$49.00","fWholesalePrice":"$34.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":3.18,"retailPrice":4.99,"fRetailPrice":"$4.99","fWholesalePrice":"$3.18"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":3.14,"retailPrice":4.49,"fRetailPrice":"$4.49","fWholesalePrice":"$3.14"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":280.00,"retailPrice":400.00000,"fRetailPrice":"¥400","fWholesalePrice":"¥280"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":12.35,"retailPrice":18.00,"fRetailPrice":"¥18.00","fWholesalePrice":"¥12.35"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":3.14,"retailPrice":4.48,"fRetailPrice":"S$ 4.48","fWholesalePrice":"S$ 3.14"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":16.10,"retailPrice":23.00,"fRetailPrice":"HK$ 23.00","fWholesalePrice":"HK$ 16.10"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":63.00,"retailPrice":90.00,"fRetailPrice":"NT$ 90","fWholesalePrice":"NT$ 63"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":31500.00,"retailPrice":45000.00,"fRetailPrice":"Rp 45ribu","fWholesalePrice":"Rp 31.500"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":133.00,"retailPrice":190.00,"fRetailPrice":"Rs 190","fWholesalePrice":"Rs 133"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":160.30,"retailPrice":229.00,"fRetailPrice":"229 р.","fWholesalePrice":"160,30 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":5.59,"retailPrice":7.99,"fRetailPrice":"7,99 TL","fWholesalePrice":"5,59 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":8.33,"retailPrice":11.90,"fRetailPrice":"NIS 11.90","fWholesalePrice":"NIS 8.33"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":36.84,"retailPrice":59.99,"fRetailPrice":"R59.99","fWholesalePrice":"R36.84"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":7.69,"retailPrice":10.99,"fRetailPrice":"SR 10.99","fWholesalePrice":"SR 7.69"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":7.69,"retailPrice":10.99,"fRetailPrice":"AED 10.99","fWholesalePrice":"AED 7.69"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":1.45,"retailPrice":2.49,"fRetailPrice":"£2.49","fWholesalePrice":"£1.45"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":14.00,"retailPrice":25.00,"fRetailPrice":"25,00 kr","fWholesalePrice":"14,00 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":19.60,"retailPrice":35.00,"fRetailPrice":"35,00 kr","fWholesalePrice":"19,60 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":1.94,"retailPrice":3.00,"fRetailPrice":"CHF 3.00","fWholesalePrice":"CHF 1.94"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":18.48,"retailPrice":33.00,"fRetailPrice":"33,00 kr","fWholesalePrice":"18,48 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.79,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,79 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.77,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,77 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.76,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,76 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.76,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,76 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.74,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,74 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.74,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,74 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.74,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,74 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.74,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,74 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.74,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,74 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.73,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,73 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.73,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,73 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.73,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,73 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.73,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,73 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.73,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,73 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.73,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,73 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.72,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,72 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.72,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,72 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.70,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,70 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.70,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,70 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.70,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,70 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.70,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,70 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.69,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,69 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.74,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,74 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":1.65,"retailPrice":2.99,"fRetailPrice":"2,99 €","fWholesalePrice":"1,65 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":2.31,"retailPrice":3.29,"fRetailPrice":"$3.29","fWholesalePrice":"$2.31"}]},{"tierStem":"580","tierName":"Alternate Tier 4","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":2.80,"retailPrice":3.99,"fRetailPrice":"$3.99","fWholesalePrice":"$2.80"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":3.84,"retailPrice":5.49,"fRetailPrice":"$5.49","fWholesalePrice":"$3.84"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":48.30,"retailPrice":69.00,"fRetailPrice":"$69.00","fWholesalePrice":"$48.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":4.45,"retailPrice":6.99,"fRetailPrice":"$6.99","fWholesalePrice":"$4.45"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":4.19,"retailPrice":5.99,"fRetailPrice":"$5.99","fWholesalePrice":"$4.19"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":350.00,"retailPrice":500.00000,"fRetailPrice":"¥500","fWholesalePrice":"¥350"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":19.21,"retailPrice":28.00,"fRetailPrice":"¥28.00","fWholesalePrice":"¥19.21"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":4.19,"retailPrice":5.98,"fRetailPrice":"S$ 5.98","fWholesalePrice":"S$ 4.19"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":19.60,"retailPrice":28.00,"fRetailPrice":"HK$ 28.00","fWholesalePrice":"HK$ 19.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":84.00,"retailPrice":120.00,"fRetailPrice":"NT$ 120","fWholesalePrice":"NT$ 84"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":41300.00,"retailPrice":59000.00,"fRetailPrice":"Rp 59ribu","fWholesalePrice":"Rp 41.300"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":175.00,"retailPrice":250.00,"fRetailPrice":"Rs 250","fWholesalePrice":"Rs 175"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":209.30,"retailPrice":299.00,"fRetailPrice":"299 р.","fWholesalePrice":"209,30 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":7.69,"retailPrice":10.99,"fRetailPrice":"10,99 TL","fWholesalePrice":"7,69 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":11.13,"retailPrice":15.90,"fRetailPrice":"NIS 15.90","fWholesalePrice":"NIS 11.13"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":49.12,"retailPrice":79.99,"fRetailPrice":"R79.99","fWholesalePrice":"R49.12"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":10.49,"retailPrice":14.99,"fRetailPrice":"SR 14.99","fWholesalePrice":"SR 10.49"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":10.49,"retailPrice":14.99,"fRetailPrice":"AED 14.99","fWholesalePrice":"AED 10.49"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":1.74,"retailPrice":2.99,"fRetailPrice":"£2.99","fWholesalePrice":"£1.74"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":16.24,"retailPrice":29.00,"fRetailPrice":"29,00 kr","fWholesalePrice":"16,24 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":25.20,"retailPrice":45.00,"fRetailPrice":"45,00 kr","fWholesalePrice":"25,20 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":2.59,"retailPrice":4.00,"fRetailPrice":"CHF 4.00","fWholesalePrice":"CHF 2.59"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":24.64,"retailPrice":44.00,"fRetailPrice":"44,00 kr","fWholesalePrice":"24,64 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.39,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,39 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.37,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,37 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.35,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,35 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.35,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,35 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.33,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,33 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.33,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,33 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.33,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,33 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.33,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,33 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.33,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,33 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.31,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,31 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.31,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,31 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.31,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,31 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.31,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,31 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.31,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,31 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.31,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,31 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.29,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,29 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.29,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,29 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.27,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,27 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.27,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,27 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.27,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,27 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.27,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,27 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.25,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,25 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.33,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,33 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.20,"retailPrice":3.99,"fRetailPrice":"3,99 €","fWholesalePrice":"2,20 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":3.08,"retailPrice":4.39,"fRetailPrice":"$4.39","fWholesalePrice":"$3.08"}]},{"tierStem":"590","tierName":"Alternate Tier 5","pricingInfo":[{"country":"United States","countryCode":"US","currencySymbol":"$","currencyCode":"USD","wholesalePrice":3.50,"retailPrice":4.99,"fRetailPrice":"$4.99","fWholesalePrice":"$3.50"},{"country":"Canada","countryCode":"CA","currencySymbol":"$","currencyCode":"CAD","wholesalePrice":4.89,"retailPrice":6.99,"fRetailPrice":"$6.99","fWholesalePrice":"$4.89"},{"country":"Mexico","countryCode":"MX","currencySymbol":"$","currencyCode":"MXN","wholesalePrice":62.30,"retailPrice":89.00,"fRetailPrice":"$89.00","fWholesalePrice":"$62.30"},{"country":"Australia","countryCode":"AU","currencySymbol":"$","currencyCode":"AUD","wholesalePrice":5.72,"retailPrice":8.99,"fRetailPrice":"$8.99","fWholesalePrice":"$5.72"},{"country":"New Zealand","countryCode":"NZ","currencySymbol":"$","currencyCode":"NZD","wholesalePrice":5.24,"retailPrice":7.49,"fRetailPrice":"$7.49","fWholesalePrice":"$5.24"},{"country":"Japan","countryCode":"JP","currencySymbol":"¥","currencyCode":"JPY","wholesalePrice":420.00,"retailPrice":600.00000,"fRetailPrice":"¥600","fWholesalePrice":"¥420"},{"country":"China","countryCode":"CN","currencySymbol":"¥","currencyCode":"CNY","wholesalePrice":20.58,"retailPrice":30.00,"fRetailPrice":"¥30.00","fWholesalePrice":"¥20.58"},{"country":"Singapore","countryCode":"SG","currencySymbol":"S","currencyCode":"SGD","wholesalePrice":4.89,"retailPrice":6.98,"fRetailPrice":"S$ 6.98","fWholesalePrice":"S$ 4.89"},{"country":"Hong Kong","countryCode":"HK","currencySymbol":"H","currencyCode":"HKD","wholesalePrice":26.60,"retailPrice":38.00,"fRetailPrice":"HK$ 38.00","fWholesalePrice":"HK$ 26.60"},{"country":"Taiwan","countryCode":"TW","currencySymbol":"N","currencyCode":"TWD","wholesalePrice":105.00,"retailPrice":150.00,"fRetailPrice":"NT$ 150","fWholesalePrice":"NT$ 105"},{"country":"Indonesia","countryCode":"ID","currencySymbol":"R","currencyCode":"IDR","wholesalePrice":52500.00,"retailPrice":75000.00,"fRetailPrice":"Rp 75ribu","fWholesalePrice":"Rp 52.500"},{"country":"India","countryCode":"IN","currencySymbol":"R","currencyCode":"INR","wholesalePrice":210.00,"retailPrice":300.00,"fRetailPrice":"Rs 300","fWholesalePrice":"Rs 210"},{"country":"Russia","countryCode":"RU","currencySymbol":"#","currencyCode":"RUB","wholesalePrice":265.30,"retailPrice":379.00,"fRetailPrice":"379 р.","fWholesalePrice":"265,30 р."},{"country":"Turkey","countryCode":"TR","currencySymbol":"#","currencyCode":"TRY","wholesalePrice":9.09,"retailPrice":12.99,"fRetailPrice":"12,99 TL","fWholesalePrice":"9,09 TL"},{"country":"Israel","countryCode":"IL","currencySymbol":"N","currencyCode":"ILS","wholesalePrice":13.93,"retailPrice":19.90,"fRetailPrice":"NIS 19.90","fWholesalePrice":"NIS 13.93"},{"country":"South Africa","countryCode":"ZA","currencySymbol":"R","currencyCode":"ZAR","wholesalePrice":61.40,"retailPrice":99.99,"fRetailPrice":"R99.99","fWholesalePrice":"R61.40"},{"country":"Saudi Arabia","countryCode":"SA","currencySymbol":"S","currencyCode":"SAR","wholesalePrice":13.99,"retailPrice":19.99,"fRetailPrice":"SR 19.99","fWholesalePrice":"SR 13.99"},{"country":"United Arab Emirates","countryCode":"AE","currencySymbol":"A","currencyCode":"AED","wholesalePrice":13.99,"retailPrice":19.99,"fRetailPrice":"AED 19.99","fWholesalePrice":"AED 13.99"},{"country":"United Kingdom","countryCode":"GB","currencySymbol":"£","currencyCode":"GBP","wholesalePrice":2.33,"retailPrice":3.99,"fRetailPrice":"£3.99","fWholesalePrice":"£2.33"},{"country":"Denmark","countryCode":"DK","currencySymbol":"#","currencyCode":"DKK","wholesalePrice":21.84,"retailPrice":39.00,"fRetailPrice":"39,00 kr","fWholesalePrice":"21,84 kr"},{"country":"Sweden","countryCode":"SE","currencySymbol":"#","currencyCode":"SEK","wholesalePrice":30.80,"retailPrice":55.00,"fRetailPrice":"55,00 kr","fWholesalePrice":"30,80 kr"},{"country":"Switzerland","countryCode":"CH","currencySymbol":"C","currencyCode":"CHF","wholesalePrice":3.24,"retailPrice":5.00,"fRetailPrice":"CHF 5.00","fWholesalePrice":"CHF 3.24"},{"country":"Norway","countryCode":"NO","currencySymbol":"#","currencyCode":"NOK","wholesalePrice":33.04,"retailPrice":59.00,"fRetailPrice":"59,00 kr","fWholesalePrice":"33,04 kr"},{"country":"Luxembourg","countryCode":"LU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.99,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,99 €"},{"country":"Malta","countryCode":"MT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.96,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,96 €"},{"country":"Cyprus","countryCode":"CY","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.94,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,94 €"},{"country":"Germany","countryCode":"DE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.94,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,94 €"},{"country":"France","countryCode":"FR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.91,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,91 €"},{"country":"Austria","countryCode":"AT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.91,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,91 €"},{"country":"Bulgaria","countryCode":"BG","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.91,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,91 €"},{"country":"Estonia","countryCode":"EE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.91,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,91 €"},{"country":"Slovakia","countryCode":"SK","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.91,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,91 €"},{"country":"Belgium","countryCode":"BE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.89,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,89 €"},{"country":"Czech Republic","countryCode":"CZ","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.89,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,89 €"},{"country":"Latvia","countryCode":"LV","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.89,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,89 €"},{"country":"Lithuania","countryCode":"LT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.89,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,89 €"},{"country":"Netherlands","countryCode":"NL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.89,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,89 €"},{"country":"Spain","countryCode":"ES","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.89,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,89 €"},{"country":"Italy","countryCode":"IT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.86,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,86 €"},{"country":"Slovenia","countryCode":"SI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.86,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,86 €"},{"country":"Greece","countryCode":"GR","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.84,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,84 €"},{"country":"Ireland","countryCode":"IE","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.84,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,84 €"},{"country":"Poland","countryCode":"PL","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.84,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,84 €"},{"country":"Portugal","countryCode":"PT","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.84,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,84 €"},{"country":"Finland","countryCode":"FI","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.82,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,82 €"},{"country":"Romania","countryCode":"RO","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.91,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,91 €"},{"country":"Hungary","countryCode":"HU","currencySymbol":"€","currencyCode":"EUR","wholesalePrice":2.75,"retailPrice":4.99,"fRetailPrice":"4,99 €","fWholesalePrice":"2,75 €"},{"country":"Korea, Republic Of","countryCode":"KR","currencySymbol":"$","currencyCode":"USD","wholesalePrice":3.85,"retailPrice":5.49,"fRetailPrice":"$5.49","fWholesalePrice":"$3.85"}]}]},"messages":{"warn":null,"error":null,"info":null},"statusCode":"SUCCESS"}
@@ -1,23 +1,64 @@
1
- module AppStorePricingMatrix
2
- CURRENCIES = %w(USD CAD MXN AUD NZD JPY EUR DKK SEK CHF NOK GBP CNY SGD HKD TWD RUB TRY INR IDR ILS ZAR SAR AED).freeze
3
- EURO_CURRENCIES = %w(BGN CZK EEK HUF LVL LTL MTL PLN RON).freeze
4
-
5
- CUSTOMER_PRICES = {}.tap do |hash|
6
- CURRENCIES.each do |currency|
7
- hash[currency] = File.read("#{File.dirname(__FILE__)}/prices/#{currency.downcase}").split("\n").freeze
8
- end
9
- end.freeze
10
-
11
- DEVELOPER_PROCEEDS = {}.tap do |hash|
12
- CURRENCIES.each do |currency|
13
- hash[currency] = File.read("#{File.dirname(__FILE__)}/prices/#{currency.downcase}_pro").split("\n").freeze
14
- end
15
- end.freeze
16
-
17
- def self.customer_currency_for(currency_code)
18
- code = currency_code.to_s.upcase
19
- return code if CURRENCIES.include? code
20
- return 'EUR' if EURO_CURRENCIES.include? code
21
- return nil
1
+ require 'json'
2
+
3
+ class AppStorePricingMatrix
4
+ class << self
5
+ def tiers
6
+ @tiers ||= JSON.parse(File.read('input/pricing_matrix.json'))['data']['pricingTiers'].map{|i| Tier.new(i) }
7
+ end
8
+
9
+ def stems
10
+ tiers.map(&:stem)
11
+ end
12
+
13
+ def countries
14
+ tiers.map{|tier| tier.prices.map(&:country_code) }.flatten.uniq
15
+ end
16
+
17
+ def currencies
18
+ tiers.map{|tier| tier.prices.map(&:currency_code) }.flatten.uniq
19
+ end
20
+
21
+ def find_by(tier: nil, country: nil)
22
+ tiers.find{|i| i.stem == tier }.prices.find{|price| price.country_code == country }
23
+ end
24
+ end
25
+
26
+ class Tier
27
+ attr_accessor :stem, :name, :prices
28
+
29
+ def initialize(hash)
30
+ @stem = Integer(hash['tierStem'])
31
+ @name = hash['tierName']
32
+ @prices = hash['pricingInfo'].map{|i| Price.new(i) }
33
+ end
34
+
35
+ def inspect
36
+ string = "#<#{self.class.name}:#{self.object_id} "
37
+ fields = instance_variables.map do |var|
38
+ value = if var == :@prices
39
+ "[...]"
40
+ else
41
+ instance_variable_get(var).inspect
42
+ end
43
+ "#{var}=#{value}"
44
+ end
45
+ string << fields.join(", ") << ">"
46
+ end
47
+ end
48
+
49
+ class Price
50
+ attr_accessor :country, :country_code, :currency_symbol, :currency_code,
51
+ :wholesale_price, :retail_price, :formatted_retail_price, :formatted_wholesale_price
52
+
53
+ def initialize(hash)
54
+ @country = hash['country']
55
+ @country_code = hash['countryCode']
56
+ @currency_symbol = hash['currencySymbol']
57
+ @currency_code = hash['currencyCode']
58
+ @wholesale_price = hash['wholesalePrice']
59
+ @retail_price = hash['retailPrice']
60
+ @formatted_retail_price = hash['fRetailPrice']
61
+ @formatted_wholesale_price = hash['fWholesalePrice']
62
+ end
22
63
  end
23
64
  end
@@ -1,79 +1,36 @@
1
- require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
1
+ require 'spec_helper'
2
2
 
3
- module ExampleMethods
4
- def spec_meat(file, currency)
5
- context "Currency: #{currency}" do
6
- it "should have currency table" do
7
- File.exists?(file).should == true
8
- end
9
-
10
- File.open(file) do |text|
11
- lines = text.readlines
12
-
13
- it "should have 0 to 87 tiers" do
14
- lines.size.should be(88)
15
- end
16
-
17
- it "should have 0 for tier 0" do
18
- ['0', '0.00'].should include lines.first.chomp
19
- end
20
-
21
- it "should verify format of table content" do
22
- lines.each_with_index do |line,i|
23
- line.should match(/^\d+(?:\.\d\d)?\n?$/), "Error while reading \"#{File.basename(file)}\", line:#{i+1}"
24
- end
25
- end
26
-
27
- it "should have increasing prices" do
28
- lines.each_with_index do |line,i|
29
- next if i == 0
30
- line.to_f.should be > lines[i - 1].to_f
31
- end
32
- end
33
- end
34
- end
3
+ describe AppStorePricingMatrix do
4
+ it '#stems' do
5
+ stems = (0..87).to_a + [510, 530, 550, 560, 570, 580, 590]
6
+ expect(AppStorePricingMatrix.stems).to eq stems
35
7
  end
36
- end
37
- include ExampleMethods
38
8
 
39
- describe "AppStorePricingMatrix" do
40
-
41
- context "Customer Currencies" do
42
- AppStorePricingMatrix::CURRENCIES.each do |currency|
43
- file = File.expand_path(File.dirname(__FILE__) + "/../lib/prices/#{currency.downcase}")
44
- spec_meat(file, currency)
45
- end
9
+ it '#countries' do
10
+ countries = ["US", "CA", "MX", "AU", "NZ", "JP", "CN", "SG", "HK", "TW", "ID", "IN", "RU",
11
+ "TR", "IL", "ZA", "SA", "AE", "GB", "DK", "SE", "CH", "NO", "LU", "MT", "CY", "DE", "FR",
12
+ "AT", "BG", "EE", "SK", "BE", "CZ", "LV", "LT", "NL", "ES", "IT", "SI", "GR", "IE", "PL",
13
+ "PT", "FI", "RO", "HU", "KR"]
14
+ expect(AppStorePricingMatrix.countries).to eq countries
46
15
  end
47
-
48
- context "Developer Proceeds" do
49
- AppStorePricingMatrix::CURRENCIES.each do |currency|
50
- file = File.expand_path(File.dirname(__FILE__) + "/../lib/prices/#{currency.downcase}_pro")
51
- spec_meat(file, currency)
52
- end
16
+
17
+ it '#currencies' do
18
+ currencies = ["USD", "CAD", "MXN", "AUD", "NZD", "JPY", "CNY", "SGD", "HKD", "TWD", "IDR",
19
+ "INR", "RUB", "TRY", "ILS", "ZAR", "SAR", "AED", "GBP", "DKK", "SEK", "CHF", "NOK", "EUR"]
20
+ expect(AppStorePricingMatrix.currencies).to eq currencies
53
21
  end
54
-
55
- context "Currency Mapping" do
56
- it "should return the given currency code if it is a valid customer currency" do
57
- AppStorePricingMatrix::CURRENCIES.each do |currency|
58
- AppStorePricingMatrix.customer_currency_for(currency).should == currency
59
- end
60
- end
61
-
62
- it "should return EUR for any currency codes that operate the store in Euros" do
63
- AppStorePricingMatrix::EURO_CURRENCIES.each do |currency|
64
- AppStorePricingMatrix.customer_currency_for(currency).should == "EUR"
65
- end
66
- end
67
-
68
- it "should return nil for any unknown currency code" do
69
- AppStorePricingMatrix.customer_currency_for(nil).should == nil
70
- AppStorePricingMatrix.customer_currency_for("XXX").should == nil
71
- AppStorePricingMatrix.customer_currency_for("-").should == nil
72
- end
73
-
74
- it "should accept symbols and lowercase currency codes" do
75
- AppStorePricingMatrix.customer_currency_for(:eur).should == "EUR"
76
- AppStorePricingMatrix.customer_currency_for('usd').should == "USD"
77
- end
22
+
23
+ it '#find_by' do
24
+ price = AppStorePricingMatrix.find_by(tier: 0, country: 'US')
25
+ expect(price.country_code).to eq 'US'
26
+ expect(price.currency_code).to eq 'USD'
27
+ expect(price.retail_price).to eq 0
28
+ expect(price.wholesale_price).to eq 0
29
+
30
+ price = AppStorePricingMatrix.find_by(tier: 1, country: 'US')
31
+ expect(price.country_code).to eq 'US'
32
+ expect(price.currency_code).to eq 'USD'
33
+ expect(price.retail_price).to eq 0.99
34
+ expect(price.wholesale_price).to eq 0.7
78
35
  end
79
36
  end
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: app_store_pricing_matrix
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
5
- prerelease:
4
+ version: 3.0.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Kenn Ejima
@@ -10,54 +9,62 @@ authors:
10
9
  autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2012-10-26 00:00:00.000000000 Z
12
+ date: 2016-05-03 00:00:00.000000000 Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: rspec
17
16
  requirement: !ruby/object:Gem::Requirement
18
- none: false
19
17
  requirements:
20
- - - ! '>='
18
+ - - ">="
21
19
  - !ruby/object:Gem::Version
22
20
  version: '0'
23
21
  type: :development
24
22
  prerelease: false
25
23
  version_requirements: !ruby/object:Gem::Requirement
26
- none: false
27
24
  requirements:
28
- - - ! '>='
25
+ - - ">="
29
26
  - !ruby/object:Gem::Version
30
27
  version: '0'
31
28
  - !ruby/object:Gem::Dependency
32
29
  name: bundler
33
30
  requirement: !ruby/object:Gem::Requirement
34
- none: false
35
31
  requirements:
36
- - - ! '>='
32
+ - - ">="
37
33
  - !ruby/object:Gem::Version
38
34
  version: '0'
39
35
  type: :development
40
36
  prerelease: false
41
37
  version_requirements: !ruby/object:Gem::Requirement
42
- none: false
43
38
  requirements:
44
- - - ! '>='
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ - !ruby/object:Gem::Dependency
43
+ name: launchy
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ type: :development
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
45
54
  - !ruby/object:Gem::Version
46
55
  version: '0'
47
56
  - !ruby/object:Gem::Dependency
48
57
  name: rake
49
58
  requirement: !ruby/object:Gem::Requirement
50
- none: false
51
59
  requirements:
52
- - - ! '>='
60
+ - - ">="
53
61
  - !ruby/object:Gem::Version
54
62
  version: '0'
55
63
  type: :development
56
64
  prerelease: false
57
65
  version_requirements: !ruby/object:Gem::Requirement
58
- none: false
59
66
  requirements:
60
- - - ! '>='
67
+ - - ">="
61
68
  - !ruby/object:Gem::Version
62
69
  version: '0'
63
70
  description: A simple module that holds currencies and prices from the Apple's iOS
@@ -68,118 +75,40 @@ executables: []
68
75
  extensions: []
69
76
  extra_rdoc_files: []
70
77
  files:
71
- - .gitignore
72
- - .rspec
73
- - .travis.yml
78
+ - ".gitignore"
79
+ - ".rspec"
80
+ - ".travis.yml"
74
81
  - Gemfile
75
82
  - LICENSE
76
83
  - README.md
77
84
  - Rakefile
78
85
  - app_store_pricing_matrix.gemspec
79
- - input/aed.txt
80
- - input/aud.txt
81
- - input/cad.txt
82
- - input/chf.txt
83
- - input/cny.txt
84
- - input/dkk.txt
85
- - input/eur.txt
86
- - input/gbp.txt
87
- - input/hkd.txt
88
- - input/idr.txt
89
- - input/ils.txt
90
- - input/inr.txt
91
- - input/jpy.txt
92
- - input/mxn.txt
93
- - input/nok.txt
94
- - input/nzd.txt
95
- - input/rub.txt
96
- - input/sar.txt
97
- - input/sek.txt
98
- - input/sgd.txt
99
- - input/try.txt
100
- - input/twd.txt
101
- - input/usd.txt
102
- - input/zar.txt
86
+ - input/pricing_matrix.json
103
87
  - lib/app_store_pricing_matrix.rb
104
- - lib/prices/aed
105
- - lib/prices/aed_pro
106
- - lib/prices/aud
107
- - lib/prices/aud_pro
108
- - lib/prices/cad
109
- - lib/prices/cad_pro
110
- - lib/prices/chf
111
- - lib/prices/chf_pro
112
- - lib/prices/cny
113
- - lib/prices/cny_pro
114
- - lib/prices/dkk
115
- - lib/prices/dkk_pro
116
- - lib/prices/eur
117
- - lib/prices/eur_pro
118
- - lib/prices/gbp
119
- - lib/prices/gbp_pro
120
- - lib/prices/hkd
121
- - lib/prices/hkd_pro
122
- - lib/prices/idr
123
- - lib/prices/idr_pro
124
- - lib/prices/ils
125
- - lib/prices/ils_pro
126
- - lib/prices/inr
127
- - lib/prices/inr_pro
128
- - lib/prices/jpy
129
- - lib/prices/jpy_pro
130
- - lib/prices/mxn
131
- - lib/prices/mxn_pro
132
- - lib/prices/nok
133
- - lib/prices/nok_pro
134
- - lib/prices/nzd
135
- - lib/prices/nzd_pro
136
- - lib/prices/rub
137
- - lib/prices/rub_pro
138
- - lib/prices/sar
139
- - lib/prices/sar_pro
140
- - lib/prices/sek
141
- - lib/prices/sek_pro
142
- - lib/prices/sgd
143
- - lib/prices/sgd_pro
144
- - lib/prices/try
145
- - lib/prices/try_pro
146
- - lib/prices/twd
147
- - lib/prices/twd_pro
148
- - lib/prices/usd
149
- - lib/prices/usd_pro
150
- - lib/prices/zar
151
- - lib/prices/zar_pro
152
88
  - spec/app_store_pricing_matrix_spec.rb
153
89
  - spec/spec_helper.rb
154
90
  homepage: http://github.com/kenn/app_store_pricing_matrix
155
91
  licenses: []
92
+ metadata: {}
156
93
  post_install_message:
157
94
  rdoc_options: []
158
95
  require_paths:
159
96
  - lib
160
97
  required_ruby_version: !ruby/object:Gem::Requirement
161
- none: false
162
98
  requirements:
163
- - - ! '>='
99
+ - - ">="
164
100
  - !ruby/object:Gem::Version
165
101
  version: '0'
166
- segments:
167
- - 0
168
- hash: -3484077460571789585
169
102
  required_rubygems_version: !ruby/object:Gem::Requirement
170
- none: false
171
103
  requirements:
172
- - - ! '>='
104
+ - - ">="
173
105
  - !ruby/object:Gem::Version
174
106
  version: '0'
175
- segments:
176
- - 0
177
- hash: -3484077460571789585
178
107
  requirements: []
179
108
  rubyforge_project:
180
- rubygems_version: 1.8.24
109
+ rubygems_version: 2.6.4
181
110
  signing_key:
182
- specification_version: 3
111
+ specification_version: 4
183
112
  summary: Constants for App Store Pricing Matrix
184
113
  test_files:
185
114
  - spec/app_store_pricing_matrix_spec.rb