diff --git a/Example/Extensions/SKProduct+Locale.swift b/Example/Extensions/SKProduct+Locale.swift new file mode 100644 index 0000000..9aaa3d4 --- /dev/null +++ b/Example/Extensions/SKProduct+Locale.swift @@ -0,0 +1,50 @@ +// +// SKProduct+Locale.swift +// +// +// Created by Alex Kovalov on 01.06.2020. +// Copyright © 2020 Alex Kovalov. All rights reserved. +// + +import Foundation +import StoreKit +import PriceKit + +public extension SKProduct { + + func priceNumberInLocale(_ locale: Locale) -> NSNumber? { + + guard let store = PriceStore() else { + return nil + } + + for tier in Tier.allCases { + if let tierPrice = store.getPrice(of: tier, inPriceLocale: priceLocale), + tierPrice.price == self.price { + + if let otherLocalePrice = store.getPrice(of: tier, inPriceLocale: locale) { + return otherLocalePrice.price + } + } + } + return nil + } + + func formattedPriceInLocale(_ locale: Locale) -> String? { + + guard let price = priceNumberInLocale(locale) else { + return nil + } + + let formatter = priceFormatter(locale: locale) + return formatter.string(from: price) + } + + func priceFormatter(locale: Locale) -> NumberFormatter { + + let formatter = NumberFormatter() + formatter.locale = locale + formatter.numberStyle = .currency + return formatter + } +} diff --git a/Example/Podfile b/Example/Podfile index 6e8760b..48e83ae 100644 --- a/Example/Podfile +++ b/Example/Podfile @@ -1,7 +1,14 @@ +source 'https://github.com/CocoaPods/Specs.git' + +platform :ios, '9.3' + use_frameworks! + target 'PriceKit_Tests' do + pod 'PriceKit', :path => '../' - pod 'Quick', '~> 1.2.0' - pod 'Nimble', '~> 7.0.2' + pod 'Quick' + pod 'Nimble' + end diff --git a/Example/Podfile.lock b/Example/Podfile.lock index f8352f3..f0daf79 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -1,22 +1,27 @@ PODS: - - Nimble (7.0.3) - - PriceKit (0.1.0) - - Quick (1.2.0) + - Nimble (8.0.9) + - PriceKit (1.1.1) + - Quick (2.2.0) DEPENDENCIES: - - Nimble (~> 7.0.2) + - Nimble - PriceKit (from `../`) - - Quick (~> 1.2.0) + - Quick + +SPEC REPOS: + trunk: + - Nimble + - Quick EXTERNAL SOURCES: PriceKit: - :path: ../ + :path: "../" SPEC CHECKSUMS: - Nimble: 7f5a9c447a33002645a071bddafbfb24ea70e0ac - PriceKit: 0342e04574bf7c02c7a5605527efde7c3eb5d14d - Quick: 58d203b1c5e27fff7229c4c1ae445ad7069a7a08 + Nimble: 98b888285a615fd34f20e61753cf58ea1402bde4 + PriceKit: 161a745d06190414f5b02905810a1a7ddf0a1df7 + Quick: 7fb19e13be07b5dfb3b90d4f9824c855a11af40e -PODFILE CHECKSUM: a746ed5c3da29ecb786ec296c5913405e5a71b03 +PODFILE CHECKSUM: db9a3ccaae54a41d3942456969aede15ece34f3f -COCOAPODS: 1.3.1 +COCOAPODS: 1.9.3 diff --git a/Example/PriceKit.xcodeproj/project.pbxproj b/Example/PriceKit.xcodeproj/project.pbxproj index 0d36dab..fb9b9e0 100644 --- a/Example/PriceKit.xcodeproj/project.pbxproj +++ b/Example/PriceKit.xcodeproj/project.pbxproj @@ -110,7 +110,6 @@ 607FACE21AFB9204008FA782 /* Frameworks */, 607FACE31AFB9204008FA782 /* Resources */, 47C387C70B8F62566F49C312 /* [CP] Embed Pods Frameworks */, - E8FBB4559A53E35D5F22D4D7 /* [CP] Copy Pods Resources */, ); buildRules = ( ); @@ -192,7 +191,7 @@ files = ( ); inputPaths = ( - "${SRCROOT}/Pods/Target Support Files/Pods-PriceKit_Tests/Pods-PriceKit_Tests-frameworks.sh", + "${PODS_ROOT}/Target Support Files/Pods-PriceKit_Tests/Pods-PriceKit_Tests-frameworks.sh", "${BUILT_PRODUCTS_DIR}/Nimble/Nimble.framework", "${BUILT_PRODUCTS_DIR}/PriceKit/PriceKit.framework", "${BUILT_PRODUCTS_DIR}/Quick/Quick.framework", @@ -205,22 +204,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-PriceKit_Tests/Pods-PriceKit_Tests-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; - E8FBB4559A53E35D5F22D4D7 /* [CP] Copy Pods Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "[CP] Copy Pods Resources"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-PriceKit_Tests/Pods-PriceKit_Tests-resources.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-PriceKit_Tests/Pods-PriceKit_Tests-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; /* End PBXShellScriptBuildPhase section */ diff --git a/PriceKit.podspec b/PriceKit.podspec index 3d37c0c..c5c0912 100644 --- a/PriceKit.podspec +++ b/PriceKit.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'PriceKit' - s.version = '1.1.0' + s.version = '1.1.1' s.summary = 'Get App Store product prices by tier and locale.' s.description = <<-DESC diff --git a/PriceKit/Classes/PricingStore.swift b/PriceKit/Classes/PricingStore.swift index db24e3d..07ac2b6 100644 --- a/PriceKit/Classes/PricingStore.swift +++ b/PriceKit/Classes/PricingStore.swift @@ -2,11 +2,11 @@ import Foundation public class PriceStore { // The name of the default pricing matrix csv file. - // Apple appends the download timestamp to the filename when you download the file from iTunes Connect, + // Apple appends the download timestamp to the filename when you download the file from App Store Connect, // which is useful information to have and should be preserved as "proof" of when the pricing table was generated. // If you are updating PriceKit's pricing matrix, delete the outdated CSV file, replace it with the newer CSV file, // and update the variable here so it points to the updated filename. - static fileprivate let defaultPricingMatrixCsvFilename = "pricing_matrix_20180107-002959" + static fileprivate let defaultPricingMatrixCsvFilename = "pricing_matrix_20200605-053929" // The actual pricing table, where the keys are region codes (see Apple's Locale documentation) // and the values are the region's tier to price lookup table. diff --git a/PriceKit/Classes/RegionCodes.swift b/PriceKit/Classes/RegionCodes.swift index 4cfec8c..917ffba 100644 --- a/PriceKit/Classes/RegionCodes.swift +++ b/PriceKit/Classes/RegionCodes.swift @@ -9,70 +9,111 @@ class RegionCodes { // The two-letter region codes here must be ISO 3166-1 country codes (compatible with the Locale class): // https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 static fileprivate let regionCodesByCountryName: Dictionary = [ - "United States" : "US", - "Canada": "CA", - "Mexico": "MX", - "Australia": "AU", - "New Zealand": "NZ", - "Japan": "JP", - "China": "CN", - "Singapore": "SG", + "Hong Kong": "HK", - "Taiwan": "TW", + "Portugal": "PT", + "Honduras": "HN", + "Paraguay": "PY", + "Croatia": "HR", + "Hungary": "HU", + "Qatar": "QA", "Indonesia": "ID", - "India": "IN", - "Russia": "RU", - "Turkey": "TR", + "Ireland": "IE", "Israel": "IL", + "United Arab Emirates": "AE", + "Afghanistan": "AF", + "India": "IN", "South Africa": "ZA", + "Iraq": "IQ", + "Iceland": "IS", + "Albania": "AL", + "Italy": "IT", + "Armenia": "AM", + "Argentina": "AR", + "Zambia": "ZM", + "Austria": "AT", + "Australia": "AU", + "Romania": "RO", + "Bosnia and Herzegovina": "BA", + "Barbados": "BB", + "Serbia": "RS", + "Russia": "RU", + "Belgium": "BE", + "Bulgaria": "BG", + "Rwanda": "RW", + "Japan": "JP", + "Bahrain": "BH", + "Bolivia": "BO", "Saudi Arabia": "SA", - "United Arab Emirates": "AE", - "United Kingdom": "UK", - "Denmark": "DK", + "Brazil": "BR", "Sweden": "SE", + "Singapore": "SG", + "Slovenia": "SI", + "Belarus": "BY", + "Slovakia": "SK", + "Canada": "CA", + "Congo, Democratic Republic of": "CD", + "El Salvador": "SV", "Switzerland": "CH", - "Norway": "NO", - "Luxembourg": "LU", - "Malta": "MT", + "Cote D'Ivoire": "CI", + "Ivoire": "CI", + "South Korea": "KR", + "Chile": "CL", + "Cameroon": "CM", + "China": "CN", + "Colombia": "CO", + "Costa Rica": "CR", + "Kazakhstan": "KZ", + "Thailand": "TH", "Cyprus": "CY", - "Germany": "DE", - "France": "FR", - "Austria": "AT", - "Bulgaria": "BG", - "Estonia": "EE", - "Slovakia": "SK", - "Belgium": "BE", "Czech Republic": "CZ", - "Latvia": "LV", + "Tonga": "TO", + "Turkey": "TR", + "Germany": "DE", + "Taiwan": "TW", + "Tanzania": "TZ", + "Denmark": "DK", "Lithuania": "LT", - "Netherlands": "NL", - "Spain": "ES", - "Italy": "IT", - "Slovenia": "SI", - "Greece": "GR", - "Ireland": "IE", - "Poland": "PL", - "Portugal": "PT", - "Finland": "SF", - "Romania": "RO", - "Hungary": "HU", - "Korea, Republic Of": "KR", - "Thailand": "TH", - "Iceland": "IS", - "Croatia": "HR", - "Albania": "AL", + "Luxembourg": "LU", + "Latvia": "LV", + "Dominican Republic": "DO", + "Ukraine": "UA", + "Libya": "LF", + "Morocco": "MA", + "Moldova": "MD", + "Montenegro": "ME", + "Ecuador": "EC", + "United States": "US", + "Myanmar": "MM", + "Estonia": "EW", + "Egypt": "EG", + "Uruguay": "UY", + "Uzbekistan": "UZ", + "Malta": "MT", + "Maldives": "MV", + "Mexico": "MX", "Malaysia": "MY", - "Philippines": "PH", + "Spain": "ES", "Vietnam": "VN", - "Egypt": "EG", - "Kazakhstan": "KZ", - "Qatar": "QA", "Nigeria": "NG", - "Pakistan": "OK", - "Tanzania, United Republic Of": "TZ", - "Chile": "CL", - "Colombia": "CO", + "Nicaragua": "NI", + "Netherlands": "NL", + "Vanuatu": "VU", + "Norway": "NO", + "Finland": "SF", + "Nauru": "NR", + "New Zealand": "NZ", + "France": "FR", + "Gabon": "GA", + "United Kingdom": "UK", + "Georgia": "GE", + "Greece": "GR", + "Guatemala": "GT", + "Panama": "PA", + "Kosovo": "XK", "Peru": "PE", - "Brazil": "BR" + "Philippines": "PH", + "Pakistan": "PK", + "Poland": "PL" ] } diff --git a/PriceKit/Classes/Tier.swift b/PriceKit/Classes/Tier.swift index f9a40a1..e01ca22 100644 --- a/PriceKit/Classes/Tier.swift +++ b/PriceKit/Classes/Tier.swift @@ -1,7 +1,7 @@ import Foundation // Available price tiers. These should match the tiers in the pricing matrix CSV. -public enum Tier: String { +public enum Tier: String, CaseIterable { case free = "Free" case tier1 = "Tier 1" case tier2 = "Tier 2" diff --git a/PriceKit/Resources/pricing_matrix_20180107-002959.csv b/PriceKit/Resources/pricing_matrix_20180107-002959.csv deleted file mode 100644 index eab3d7a..0000000 --- a/PriceKit/Resources/pricing_matrix_20180107-002959.csv +++ /dev/null @@ -1,97 +0,0 @@ -,"United States (USD)",,"Canada (CAD)",,"Mexico (MXN)",,"Australia (AUD)",,"New Zealand (NZD)",,"Japan (JPY)",,"China (CNY)",,"Singapore (SGD)",,"Hong Kong (HKD)",,"Taiwan (TWD)",,"Indonesia (IDR)",,"India (INR)",,"Russia (RUB)",,"Turkey (TRY)",,"Israel (ILS)",,"South Africa (ZAR)",,"Saudi Arabia (SAR)",,"United Arab Emirates (AED)",,"United Kingdom (GBP)",,"Denmark (DKK)",,"Sweden (SEK)",,"Switzerland (CHF)",,"Norway (NOK)",,"Luxembourg (EUR)",,"Malta (EUR)",,"Cyprus (EUR)",,"Germany (EUR)",,"France (EUR)",,"Austria (EUR)",,"Bulgaria (BGN)",,"Estonia (EUR)",,"Slovakia (EUR)",,"Belgium (EUR)",,"Czech Republic (CZK)",,"Latvia (EUR)",,"Lithuania (EUR)",,"Netherlands (EUR)",,"Spain (EUR)",,"Italy (EUR)",,"Slovenia (EUR)",,"Greece (EUR)",,"Ireland (EUR)",,"Poland (PLN)",,"Portugal (EUR)",,"Finland (EUR)",,"Romania (RON)",,"Hungary (HUF)",,"Korea, Republic Of (USD)",,"Thailand (THB)",,"Iceland (USD)",,"Croatia (HRK)",,"Albania (USD)",,"Malaysia (MYR)",,"Philippines (PHP)",,"Vietnam (VND)",,"Egypt (EGP)",,"Kazakhstan (KZT)",,"Qatar (QAR)",,"Nigeria (NGN)",,"Pakistan (PKR)",,"Tanzania, United Republic Of (TZS)",,"Chile (CLP)",,"Colombia (COP)",,"Peru (PEN)",,"Brazil (BRL)", -,"Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds" -Free,"0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00000","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00" -Tier 1,"0.99","0.70","1.39","0.97","19.00","13.30","1.49","0.95","1.49","0.91","120.00000","84.00","6.00","4.12","1.48","1.04","8.00","5.60","30.00","20.00","15000.00","10500.00","80.00","47.46","75.00","44.49","3.49","2.44","3.50","2.45","14.99","9.20","3.69","2.58","3.69","2.58","0.99","0.58","9.00","5.04","10.00","5.60","1.00","0.65","11.00","6.16","1.09","0.65","1.09","0.65","1.09","0.64","1.09","0.64","1.09","0.64","1.09","0.64","1.99","1.16","1.09","0.64","1.09","0.64","1.09","0.63","29.00","16.78","1.09","0.63","1.09","0.63","1.09","0.63","1.09","0.63","1.09","0.63","1.09","0.63","1.09","0.62","1.09","0.62","4.99","2.84","1.09","0.62","1.09","0.62","4.99","2.94","349.00","192.36","1.09","0.77","35.00","24.50","1.23","0.70","8.99","5.03","1.19","0.70","3.90","2.73","49.00","34.30","22000.00","15400.00","18.99","11.76","349.00","244.30","3.69","2.58","300.00","210.00","100.00","70.00","2200.00","1540.00","690.00","483.00","2900.00","2030.00","3.50","2.45","3.50","2.45" -Tier 2,"1.99","1.40","2.79","1.95","39.00","27.30","2.99","1.90","2.99","1.82","240.00000","168.00","12.00","8.23","2.98","2.09","15.00","10.50","60.00","40.00","29000.00","20300.00","160.00","94.92","149.00","88.39","6.99","4.89","6.90","4.83","29.99","18.41","7.29","5.10","7.29","5.10","1.99","1.16","17.00","9.52","20.00","11.20","2.00","1.30","22.00","12.32","2.29","1.37","2.29","1.36","2.29","1.35","2.29","1.35","2.29","1.34","2.29","1.34","4.49","2.62","2.29","1.34","2.29","1.34","2.29","1.32","59.00","34.13","2.29","1.32","2.29","1.32","2.29","1.32","2.29","1.32","2.29","1.31","2.29","1.31","2.29","1.29","2.29","1.30","8.99","5.12","2.29","1.30","2.29","1.29","9.99","5.88","699.00","385.28","2.19","1.54","69.00","48.30","2.47","1.40","16.99","9.51","2.39","1.40","7.90","5.53","99.00","69.30","45000.00","31500.00","37.99","23.53","699.00","489.30","7.29","5.10","600.00","420.00","200.00","140.00","4500.00","3150.00","1300.00","910.00","5900.00","4130.00","6.90","4.83","6.90","4.83" -Tier 3,"2.99","2.10","3.99","2.79","59.00","41.30","4.49","2.86","4.49","2.73","360.00000","252.00","18.00","12.35","4.48","3.14","23.00","16.10","90.00","60.00","45000.00","31500.00","250.00","148.31","229.00","135.85","9.99","6.99","10.90","7.63","49.99","30.70","10.99","7.69","10.99","7.69","2.99","1.74","25.00","14.00","30.00","16.80","3.00","1.95","33.00","18.48","3.49","2.09","3.49","2.07","3.49","2.05","3.49","2.05","3.49","2.04","3.49","2.04","6.49","3.79","3.49","2.04","3.49","2.04","3.49","2.02","89.00","51.49","3.49","2.02","3.49","2.02","3.49","2.02","3.49","2.02","3.49","2.00","3.49","2.00","3.49","1.97","3.49","1.99","13.99","7.96","3.49","1.99","3.49","1.97","14.99","8.82","1090.00","601.00","3.29","2.31","99.00","69.30","3.71","2.10","24.99","13.99","3.59","2.10","12.90","9.03","149.00","104.30","69000.00","48300.00","54.99","34.06","999.00","699.30","10.99","7.69","900.00","630.00","300.00","210.00","6500.00","4550.00","1900.00","1330.00","8900.00","6230.00","9.90","6.93","9.90","6.93" -Tier 4,"3.99","2.80","5.49","3.84","79.00","55.30","5.99","3.81","5.99","3.65","480.00000","336.00","25.00","17.15","5.98","4.19","28.00","19.60","120.00","80.00","59000.00","41300.00","300.00","177.97","299.00","177.37","13.99","9.79","13.90","9.73","59.99","36.84","14.99","10.49","14.99","10.49","3.99","2.33","35.00","19.60","40.00","22.40","4.00","2.60","44.00","24.64","4.49","2.69","4.49","2.66","4.49","2.64","4.49","2.64","4.49","2.62","4.49","2.62","8.49","4.95","4.49","2.62","4.49","2.62","4.49","2.60","119.00","68.84","4.49","2.60","4.49","2.60","4.49","2.60","4.49","2.60","4.49","2.58","4.49","2.58","4.49","2.53","4.49","2.56","18.99","10.81","4.49","2.56","4.49","2.53","19.99","11.76","1490.00","821.26","4.39","3.08","139.00","97.30","4.95","2.80","34.99","19.59","4.79","2.80","16.90","11.83","199.00","139.30","89000.00","62300.00","74.99","46.45","1390.00","973.00","14.99","10.49","1200.00","840.00","400.00","280.00","8900.00","6230.00","2500.00","1750.00","11900.00","8330.00","12.90","9.03","12.90","9.03" -Tier 5,"4.99","3.50","6.99","4.89","99.00","69.30","7.99","5.08","7.49","4.56","600.00000","420.00","30.00","20.58","6.98","4.89","38.00","26.60","150.00","100.00","75000.00","52500.00","400.00","237.29","379.00","224.83","17.99","12.59","17.90","12.53","79.99","49.12","17.99","12.59","17.99","12.59","4.99","2.91","45.00","25.20","50.00","28.00","5.00","3.25","55.00","30.80","5.49","3.28","5.49","3.26","5.49","3.23","5.49","3.23","5.49","3.20","5.49","3.20","10.99","6.41","5.49","3.20","5.49","3.20","5.49","3.18","149.00","86.20","5.49","3.18","5.49","3.18","5.49","3.18","5.49","3.18","5.49","3.15","5.49","3.15","5.49","3.10","5.49","3.12","23.99","13.65","5.49","3.12","5.49","3.10","24.99","14.70","1790.00","987.00","5.49","3.85","179.00","125.30","6.19","3.50","42.99","24.07","5.99","3.50","19.90","13.93","249.00","174.30","109000.00","76300.00","94.99","58.84","1690.00","1183.00","17.99","12.59","1500.00","1050.00","500.00","350.00","10900.00","7630.00","3500.00","2450.00","14900.00","10430.00","16.90","11.83","16.90","11.83" -Tier 6,"5.99","4.20","8.49","5.94","109.00","76.30","9.99","6.36","8.99","5.47","720.00000","504.00","40.00","27.44","8.98","6.29","48.00","33.60","180.00","120.00","89000.00","62300.00","500.00","296.61","459.00","272.29","19.99","13.99","19.90","13.93","99.99","61.40","20.99","14.69","20.99","14.69","5.99","3.49","49.00","27.44","65.00","36.40","6.00","3.90","65.00","36.40","6.99","4.18","6.99","4.15","6.99","4.11","6.99","4.11","6.99","4.08","6.99","4.08","12.99","7.58","6.99","4.08","6.99","4.08","6.99","4.04","179.00","103.55","6.99","4.04","6.99","4.04","6.99","4.04","6.99","4.04","6.99","4.01","6.99","4.01","6.99","3.95","6.99","3.98","27.99","15.93","6.99","3.98","6.99","3.95","29.99","17.64","2290.00","1262.20","6.59","4.62","209.00","146.30","7.43","4.20","49.99","27.99","7.19","4.20","24.90","17.43","299.00","209.30","129000.00","90300.00","109.99","68.14","1990.00","1393.00","20.99","14.69","1900.00","1330.00","600.00","420.00","12900.00","9030.00","3900.00","2730.00","17900.00","12530.00","19.90","13.93","19.90","13.93" -Tier 7,"6.99","4.90","9.99","6.99","129.00","90.30","10.99","6.99","9.99","6.08","840.00000","588.00","45.00","30.87","9.98","6.99","53.00","37.10","210.00","140.00","99000.00","69300.00","550.00","326.27","529.00","313.81","24.99","17.49","25.90","18.13","109.99","67.54","24.99","17.49","24.99","17.49","6.99","4.08","59.00","33.04","75.00","42.00","7.00","4.55","75.00","42.00","7.99","4.78","7.99","4.74","7.99","4.70","7.99","4.70","7.99","4.66","7.99","4.66","14.99","8.74","7.99","4.66","7.99","4.66","7.99","4.62","199.00","115.12","7.99","4.62","7.99","4.62","7.99","4.62","7.99","4.62","7.99","4.58","7.99","4.58","7.99","4.51","7.99","4.55","32.99","18.77","7.99","4.55","7.99","4.51","34.99","20.58","2490.00","1372.44","7.69","5.39","249.00","174.30","8.67","4.90","59.99","33.59","8.39","4.90","29.90","20.93","349.00","244.30","149000.00","104300.00","129.99","80.52","2490.00","1743.00","24.99","17.49","2200.00","1540.00","700.00","490.00","14900.00","10430.00","4500.00","3150.00","19900.00","13930.00","22.90","16.03","22.90","16.03" -Tier 8,"7.99","5.60","10.99","7.69","149.00","104.30","12.99","8.27","11.99","7.30","960.00000","672.00","50.00","34.30","10.98","7.69","58.00","40.60","240.00","160.00","119000.00","83300.00","600.00","355.93","599.00","355.34","27.99","19.59","29.90","20.93","129.99","79.82","29.99","20.99","29.99","20.99","7.99","4.66","69.00","38.64","85.00","47.60","8.00","5.20","85.00","47.60","8.99","5.38","8.99","5.33","8.99","5.29","8.99","5.29","8.99","5.24","8.99","5.24","17.99","10.49","8.99","5.24","8.99","5.24","8.99","5.20","249.00","144.05","8.99","5.20","8.99","5.20","8.99","5.20","8.99","5.20","8.99","5.16","8.99","5.16","8.99","5.08","8.99","5.12","37.99","21.62","8.99","5.12","8.99","5.08","39.99","23.52","2990.00","1648.03","8.79","6.16","279.00","195.30","9.91","5.60","69.99","39.19","9.59","5.60","34.90","24.43","399.00","279.30","179000.00","125300.00","149.99","92.91","2790.00","1953.00","29.99","20.99","2500.00","1750.00","800.00","560.00","17900.00","12530.00","5500.00","3850.00","22900.00","16030.00","24.90","17.43","24.90","17.43" -Tier 9,"8.99","6.30","11.99","8.39","179.00","125.30","13.99","8.90","12.99","7.91","1080.00000","756.00","60.00","41.16","12.98","9.09","68.00","47.60","270.00","180.00","129000.00","90300.00","700.00","415.25","699.00","414.66","29.99","20.99","31.90","22.33","139.99","85.96","32.99","23.09","32.99","23.09","8.99","5.24","79.00","44.24","95.00","53.20","9.00","5.85","99.00","55.44","9.99","5.98","9.99","5.93","9.99","5.88","9.99","5.88","9.99","5.83","9.99","5.83","19.99","11.66","9.99","5.83","9.99","5.83","9.99","5.78","279.00","161.40","9.99","5.78","9.99","5.78","9.99","5.78","9.99","5.78","9.99","5.73","9.99","5.73","9.99","5.64","9.99","5.69","42.99","24.47","9.99","5.69","9.99","5.64","44.99","26.46","3290.00","1813.39","9.89","6.93","319.00","223.30","11.15","6.30","79.99","44.79","10.79","6.30","37.90","26.53","449.00","314.30","199000.00","139300.00","169.99","105.30","2990.00","2093.00","32.99","23.09","2700.00","1890.00","900.00","630.00","19900.00","13930.00","5900.00","4130.00","24900.00","17430.00","29.90","20.93","29.90","20.93" -Tier 10,"9.99","7.00","13.99","9.79","199.00","139.30","14.99","9.54","14.99","9.12","1200.00000","840.00","68.00","46.65","14.98","10.49","78.00","54.60","300.00","200.00","149000.00","104300.00","800.00","474.58","749.00","444.32","34.99","24.49","35.90","25.13","149.99","92.10","36.99","25.89","36.99","25.89","9.99","5.83","89.00","49.84","109.00","61.04","10.00","6.50","109.00","61.04","10.99","6.58","10.99","6.52","10.99","6.46","10.99","6.46","10.99","6.41","10.99","6.41","21.99","12.83","10.99","6.41","10.99","6.41","10.99","6.36","299.00","172.98","10.99","6.36","10.99","6.36","10.99","6.36","10.99","6.36","10.99","6.31","10.99","6.31","10.99","6.20","10.99","6.25","47.99","27.31","10.99","6.25","10.99","6.20","49.99","29.41","3490.00","1924.00","10.99","7.70","349.00","244.30","12.39","7.00","89.99","50.39","11.99","7.00","39.90","27.93","499.00","349.30","219000.00","153300.00","189.99","117.69","3490.00","2443.00","36.99","25.89","2900.00","2030.00","1000.00","700.00","21900.00","15330.00","6500.00","4550.00","29900.00","20930.00","32.90","23.03","32.90","23.03" -Tier 11,"10.99","7.70","14.99","10.49","209.00","146.30","16.99","10.81","15.99","9.73","1300.00000","910.00","73.00","50.08","15.98","11.19","83.00","58.10","330.00","220.00","159000.00","111300.00","850.00","504.24","849.00","503.64","39.99","27.99","39.90","27.93","169.99","104.38","39.99","27.99","39.99","27.99","10.99","6.41","95.00","53.20","119.00","66.64","11.00","7.15","119.00","66.64","11.99","7.17","11.99","7.11","11.99","7.05","11.99","7.05","11.99","6.99","11.99","6.99","22.99","13.41","11.99","6.99","11.99","6.99","11.99","6.94","329.00","190.33","11.99","6.94","11.99","6.94","11.99","6.94","11.99","6.94","11.99","6.88","11.99","6.88","11.99","6.77","11.99","6.82","52.99","30.16","11.99","6.82","11.99","6.77","54.99","32.35","3990.00","2199.21","12.09","8.47","389.00","272.30","13.63","7.70","94.99","53.19","13.19","7.70","44.90","31.43","549.00","384.30","229000.00","160300.00","199.99","123.89","3790.00","2653.00","39.99","27.99","3500.00","2450.00","1100.00","770.00","22900.00","16030.00","7500.00","5250.00","32900.00","23030.00","34.90","24.43","34.90","24.43" -Tier 12,"11.99","8.40","16.99","11.89","229.00","160.30","17.99","11.45","17.99","10.95","1400.00000","980.00","78.00","53.51","16.98","11.89","88.00","61.60","360.00","240.00","179000.00","125300.00","900.00","533.90","899.00","533.31","44.99","31.49","43.90","30.73","179.99","110.52","44.99","31.49","44.99","31.49","11.99","6.99","99.00","55.44","129.00","72.24","12.00","7.80","129.00","72.24","12.99","7.77","12.99","7.71","12.99","7.64","12.99","7.64","12.99","7.58","12.99","7.58","24.99","14.58","12.99","7.58","12.99","7.58","12.99","7.51","349.00","201.90","12.99","7.51","12.99","7.51","12.99","7.51","12.99","7.51","12.99","7.45","12.99","7.45","12.99","7.33","12.99","7.39","54.99","31.30","12.99","7.39","12.99","7.33","59.99","35.29","4490.00","2475.00","13.19","9.24","419.00","293.30","14.87","8.40","99.99","55.99","14.39","8.40","49.90","34.93","599.00","419.30","249000.00","174300.00","229.99","142.47","3990.00","2793.00","44.99","31.49","3700.00","2590.00","1200.00","840.00","24900.00","17430.00","7900.00","5530.00","34900.00","24430.00","39.90","27.93","39.90","27.93" -Tier 13,"12.99","9.10","17.99","12.59","249.00","174.30","19.99","12.72","18.99","11.56","1600.00000","1120.00","88.00","60.37","17.98","12.59","98.00","68.60","390.00","260.00","189000.00","132300.00","1000.00","593.22","999.00","592.63","47.99","33.59","45.90","32.13","199.99","122.80","47.99","33.59","47.99","33.59","12.99","7.58","109.00","61.04","139.00","77.84","13.00","8.45","139.00","77.84","13.99","8.37","13.99","8.30","13.99","8.23","13.99","8.23","13.99","8.16","13.99","8.16","27.99","16.33","13.99","8.16","13.99","8.16","13.99","8.09","379.00","219.26","13.99","8.09","13.99","8.09","13.99","8.09","13.99","8.09","13.99","8.03","13.99","8.03","13.99","7.90","13.99","7.96","59.99","34.14","13.99","7.96","13.99","7.90","64.99","38.23","4790.00","2640.16","14.29","10.01","459.00","321.30","16.11","9.10","109.99","61.59","15.59","9.10","54.90","38.43","649.00","454.30","279000.00","195300.00","239.99","148.67","4490.00","3143.00","47.99","33.59","3900.00","2730.00","1300.00","910.00","27900.00","19530.00","8500.00","5950.00","37900.00","26530.00","42.90","30.03","42.90","30.03" -Tier 14,"13.99","9.80","19.99","13.99","259.00","181.30","21.99","13.99","20.99","12.78","1700.00000","1190.00","93.00","63.80","19.98","13.99","108.00","75.60","420.00","280.00","199000.00","139300.00","1100.00","652.54","1090.00","646.61","49.99","34.99","49.90","34.93","219.99","135.08","49.99","34.99","49.99","34.99","13.99","8.16","119.00","66.64","149.00","83.44","14.00","9.10","149.00","83.44","14.99","8.97","14.99","8.89","14.99","8.82","14.99","8.82","14.99","8.74","14.99","8.74","29.99","17.49","14.99","8.74","14.99","8.74","14.99","8.67","399.00","230.83","14.99","8.67","14.99","8.67","14.99","8.67","14.99","8.67","14.99","8.60","14.99","8.60","14.99","8.46","14.99","8.53","64.99","36.99","14.99","8.53","14.99","8.46","69.99","41.17","4990.00","2750.39","15.39","10.78","489.00","342.30","17.35","9.80","119.99","67.19","16.79","9.80","57.90","40.53","699.00","489.30","299000.00","209300.00","259.99","161.06","4990.00","3493.00","49.99","34.99","4500.00","3150.00","1400.00","980.00","29900.00","20930.00","8900.00","6230.00","39900.00","27930.00","44.90","31.43","44.90","31.43" -Tier 15,"14.99","10.50","20.99","14.69","279.00","195.30","22.99","14.63","21.99","13.39","1800.00000","1260.00","98.00","67.24","21.98","15.39","118.00","82.60","450.00","300.00","219000.00","153300.00","1200.00","711.86","1150.00","682.20","54.99","38.49","53.90","37.73","229.99","141.22","54.99","38.49","54.99","38.49","14.99","8.74","129.00","72.24","159.00","89.04","15.00","9.75","159.00","89.04","16.99","10.16","16.99","10.08","16.99","9.99","16.99","9.99","16.99","9.91","16.99","9.91","32.99","19.24","16.99","9.91","16.99","9.91","16.99","9.83","449.00","259.75","16.99","9.83","16.99","9.83","16.99","9.83","16.99","9.83","16.99","9.75","16.99","9.75","16.99","9.59","16.99","9.67","69.99","39.83","16.99","9.67","16.99","9.59","74.99","44.11","5490.00","3026.00","16.49","11.55","529.00","370.30","18.59","10.50","129.99","72.79","17.99","10.50","59.90","41.93","749.00","524.30","329000.00","230300.00","279.99","173.45","5290.00","3703.00","54.99","38.49","4700.00","3290.00","1500.00","1050.00","32900.00","23030.00","9900.00","6930.00","42900.00","30030.00","49.90","34.93","49.90","34.93" -Tier 16,"15.99","11.20","21.99","15.39","299.00","209.30","24.99","15.90","23.99","14.60","1900.00000","1330.00","108.00","74.10","22.98","16.09","123.00","86.10","490.00","327.00","239000.00","167300.00","1250.00","741.53","1190.00","705.93","57.99","40.59","55.90","39.13","249.99","153.50","59.99","41.99","59.99","41.99","15.99","9.33","139.00","77.84","169.00","94.64","16.00","10.40","169.00","94.64","17.99","10.76","17.99","10.67","17.99","10.58","17.99","10.58","17.99","10.49","17.99","10.49","34.99","20.41","17.99","10.49","17.99","10.49","17.99","10.41","479.00","277.11","17.99","10.41","17.99","10.41","17.99","10.41","17.99","10.41","17.99","10.32","17.99","10.32","17.99","10.16","17.99","10.24","74.99","42.68","17.99","10.24","17.99","10.16","79.99","47.05","5790.00","3191.34","17.59","12.32","559.00","391.30","19.83","11.20","139.99","78.39","19.19","11.20","64.90","45.43","799.00","559.30","349000.00","244300.00","299.99","185.83","5490.00","3843.00","59.99","41.99","4900.00","3430.00","1600.00","1120.00","34900.00","24430.00","10500.00","7350.00","44900.00","31430.00","52.90","37.03","52.90","37.03" -Tier 17,"16.99","11.90","23.99","16.79","319.00","223.30","26.99","17.18","24.99","15.21","2000.00000","1400.00","113.00","77.53","23.98","16.79","128.00","89.60","520.00","347.00","249000.00","174300.00","1300.00","771.19","1290.00","765.25","59.99","41.99","59.90","41.93","269.99","165.78","64.99","45.49","64.99","45.49","16.99","9.91","145.00","81.20","179.00","100.24","17.00","11.05","179.00","100.24","18.99","11.36","18.99","11.27","18.99","11.17","18.99","11.17","18.99","11.08","18.99","11.08","37.99","22.16","18.99","11.08","18.99","11.08","18.99","10.99","499.00","288.68","18.99","10.99","18.99","10.99","18.99","10.99","18.99","10.99","18.99","10.90","18.99","10.90","18.99","10.72","18.99","10.81","79.99","45.52","18.99","10.81","18.99","10.72","84.99","49.99","5990.00","3302.00","18.69","13.09","599.00","419.30","21.07","11.90","144.99","81.19","20.39","11.90","69.90","48.93","849.00","594.30","379000.00","265300.00","319.99","198.22","5990.00","4193.00","64.99","45.49","5500.00","3850.00","1700.00","1190.00","37900.00","26530.00","10900.00","7630.00","49900.00","34930.00","54.90","38.43","54.90","38.43" -Tier 18,"17.99","12.60","24.99","17.49","339.00","237.30","27.99","17.81","26.99","16.43","2200.00000","1540.00","118.00","80.96","25.98","18.19","138.00","96.60","540.00","360.00","269000.00","188300.00","1400.00","830.51","1390.00","824.58","64.99","45.49","63.90","44.73","279.99","171.92","67.99","47.59","67.99","47.59","17.99","10.49","149.00","83.44","189.00","105.84","18.00","11.70","189.00","105.84","19.99","11.96","19.99","11.86","19.99","11.76","19.99","11.76","19.99","11.66","19.99","11.66","38.99","22.74","19.99","11.66","19.99","11.66","19.99","11.56","529.00","306.03","19.99","11.56","19.99","11.56","19.99","11.56","19.99","11.56","19.99","11.47","19.99","11.47","19.99","11.28","19.99","11.38","84.99","48.37","19.99","11.38","19.99","11.28","89.99","52.94","6490.00","3577.17","19.79","13.86","629.00","440.30","22.31","12.60","149.99","83.99","21.59","12.60","74.90","52.43","899.00","629.30","399000.00","279300.00","329.99","204.42","6290.00","4403.00","67.99","47.59","5700.00","3990.00","1800.00","1260.00","39900.00","27930.00","11900.00","8330.00","52900.00","37030.00","59.90","41.93","59.90","41.93" -Tier 19,"18.99","13.30","25.99","18.19","359.00","251.30","29.99","19.08","27.99","17.04","2300.00000","1610.00","123.00","84.39","26.98","18.89","148.00","103.60","570.00","380.00","279000.00","195300.00","1500.00","889.83","1450.00","860.17","67.99","47.59","67.90","47.53","289.99","178.06","69.99","48.99","69.99","48.99","18.99","11.08","159.00","89.04","199.00","111.44","19.00","12.35","199.00","111.44","20.99","12.56","20.99","12.45","20.99","12.35","20.99","12.35","20.99","12.24","20.99","12.24","39.99","23.33","20.99","12.24","20.99","12.24","20.99","12.14","549.00","317.60","20.99","12.14","20.99","12.14","20.99","12.14","20.99","12.14","20.99","12.04","20.99","12.04","20.99","11.85","20.99","11.95","89.99","51.21","20.99","11.95","20.99","11.85","94.99","55.88","6790.00","3743.00","20.89","14.63","669.00","468.30","23.55","13.30","159.99","89.59","22.79","13.30","77.90","54.53","949.00","664.30","429000.00","300300.00","349.99","216.81","6490.00","4543.00","69.99","48.99","5900.00","4130.00","1900.00","1330.00","42900.00","30030.00","12500.00","8750.00","54900.00","38430.00","62.90","44.03","62.90","44.03" -Tier 20,"19.99","14.00","27.99","19.59","379.00","265.30","30.99","19.72","29.99","18.25","2400.00000","1680.00","128.00","87.82","28.98","20.29","158.00","110.60","590.00","393.33","299000.00","209300.00","1600.00","949.15","1490.00","883.90","69.99","48.99","69.90","48.93","299.99","184.20","74.99","52.49","74.99","52.49","19.99","11.66","169.00","94.64","209.00","117.04","20.00","13.00","219.00","122.64","21.99","13.16","21.99","13.04","21.99","12.94","21.99","12.94","21.99","12.83","21.99","12.83","42.99","25.08","21.99","12.83","21.99","12.83","21.99","12.72","599.00","346.53","21.99","12.72","21.99","12.72","21.99","12.72","21.99","12.72","21.99","12.62","21.99","12.62","21.99","12.41","21.99","12.51","94.99","54.06","21.99","12.51","21.99","12.41","99.99","58.82","6990.00","3853.00","21.99","15.40","699.00","489.30","24.79","14.00","169.99","95.19","23.99","14.00","79.90","55.93","999.00","699.30","449000.00","314300.00","379.99","235.39","6990.00","4893.00","74.99","52.49","6500.00","4550.00","2000.00","1400.00","44900.00","31430.00","12900.00","9030.00","57900.00","40530.00","64.90","45.43","64.90","45.43" -Tier 21,"20.99","14.70","28.99","20.29","399.00","279.30","32.99","20.99","30.99","18.86","2500.00000","1750.00","138.00","94.68","29.98","20.99","163.00","114.10","630.00","420.00","309000.00","216300.00","1650.00","978.81","1590.00","943.22","74.99","52.49","73.90","51.73","319.99","196.49","77.99","54.59","77.99","54.59","20.49","11.95","179.00","100.24","219.00","122.64","21.00","13.65","229.00","128.24","22.99","13.75","22.99","13.64","22.99","13.52","22.99","13.52","22.99","13.41","22.99","13.41","44.99","26.24","22.99","13.41","22.99","13.41","22.99","13.30","629.00","363.88","22.99","13.30","22.99","13.30","22.99","13.30","22.99","13.30","22.99","13.19","22.99","13.19","22.99","12.98","22.99","13.08","99.99","56.90","22.99","13.08","22.99","12.98","104.99","61.76","7490.00","4128.35","23.09","16.17","739.00","517.30","26.03","14.70","179.99","100.79","25.19","14.70","84.90","59.43","1050.00","735.00","479000.00","335300.00","399.99","247.78","7290.00","5103.00","77.99","54.59","6700.00","4690.00","2100.00","1470.00","45900.00","32130.00","13900.00","9730.00","59900.00","41930.00","69.90","48.93","69.90","48.93" -Tier 22,"21.99","15.40","29.99","20.99","409.00","286.30","34.99","22.27","32.99","20.08","2600.00000","1820.00","148.00","101.54","31.98","22.39","168.00","117.60","660.00","440.00","319000.00","223300.00","1700.00","1008.47","1690.00","1002.54","77.99","54.59","77.90","54.53","329.99","202.63","79.99","55.99","79.99","55.99","20.99","12.24","189.00","105.84","229.00","128.24","22.00","14.30","239.00","133.84","23.99","14.35","23.99","14.23","23.99","14.11","23.99","14.11","23.99","13.99","23.99","13.99","47.99","27.99","23.99","13.99","23.99","13.99","23.99","13.88","649.00","375.45","23.99","13.88","23.99","13.88","23.99","13.88","23.99","13.88","23.99","13.76","23.99","13.76","23.99","13.54","23.99","13.65","104.99","59.75","23.99","13.65","23.99","13.54","109.99","64.70","7990.00","4404.00","24.19","16.94","769.00","538.30","27.27","15.40","189.99","106.39","26.39","15.40","89.90","62.93","1090.00","763.00","499000.00","349300.00","419.99","260.17","7490.00","5243.00","79.99","55.99","6900.00","4830.00","2200.00","1540.00","47900.00","33530.00","14500.00","10150.00","62900.00","44030.00","72.90","51.03","72.90","51.03" -Tier 23,"22.99","16.10","31.99","22.39","429.00","300.30","35.99","22.90","33.99","20.69","2800.00000","1960.00","153.00","104.97","32.98","23.09","178.00","124.60","690.00","460.00","339000.00","237300.00","1800.00","1067.80","1750.00","1038.14","79.99","55.99","79.90","55.93","349.99","214.91","84.99","59.49","84.99","59.49","21.99","12.83","195.00","109.20","239.00","133.84","23.00","14.95","249.00","139.44","24.99","14.95","24.99","14.82","24.99","14.70","24.99","14.70","24.99","14.58","24.99","14.58","49.99","29.16","24.99","14.58","24.99","14.58","24.99","14.46","679.00","392.81","24.99","14.46","24.99","14.46","24.99","14.46","24.99","14.46","24.99","14.34","24.99","14.34","24.99","14.11","24.99","14.22","109.99","62.60","24.99","14.22","24.99","14.11","114.99","67.64","8490.00","4680.00","25.29","17.71","809.00","566.30","28.51","16.10","194.99","109.19","27.59","16.10","94.90","66.43","1150.00","805.00","529000.00","370300.00","429.99","266.37","7990.00","5593.00","84.99","59.49","7200.00","5040.00","2300.00","1610.00","49900.00","34930.00","14900.00","10430.00","64900.00","45430.00","74.90","52.43","74.90","52.43" -Tier 24,"23.99","16.80","32.99","23.09","449.00","314.30","37.99","24.18","35.99","21.91","2900.00000","2030.00","158.00","108.40","33.98","23.79","188.00","131.60","720.00","480.00","349000.00","244300.00","1900.00","1127.12","1790.00","1061.86","84.99","59.49","85.90","60.13","379.99","233.33","87.99","61.59","87.99","61.59","22.99","13.41","199.00","111.44","249.00","139.44","24.00","15.60","259.00","145.04","26.99","16.15","26.99","16.01","26.99","15.88","26.99","15.88","26.99","15.74","26.99","15.74","51.99","30.33","26.99","15.74","26.99","15.74","26.99","15.61","699.00","404.38","26.99","15.61","26.99","15.61","26.99","15.61","26.99","15.61","26.99","15.49","26.99","15.49","26.99","15.24","26.99","15.36","114.99","65.44","26.99","15.36","26.99","15.24","119.99","70.58","8790.00","4845.00","26.39","18.48","839.00","587.30","29.75","16.80","199.99","111.99","28.79","16.80","99.90","69.93","1190.00","833.00","549000.00","384300.00","449.99","278.75","8290.00","5803.00","87.99","61.59","7500.00","5250.00","2400.00","1680.00","52900.00","37030.00","15900.00","11130.00","69900.00","48930.00","77.90","54.53","77.90","54.53" -Tier 25,"24.99","17.50","34.99","24.49","479.00","335.30","38.99","24.81","36.99","22.52","3000.00000","2100.00","163.00","111.83","34.98","24.49","198.00","138.60","750.00","500.00","359000.00","251300.00","1950.00","1156.78","1890.00","1121.19","89.99","62.99","89.90","62.93","399.99","245.61","89.99","62.99","89.99","62.99","23.99","13.99","209.00","117.04","259.00","145.04","25.00","16.25","269.00","150.64","27.99","16.75","27.99","16.60","27.99","16.46","27.99","16.46","27.99","16.33","27.99","16.33","52.99","30.91","27.99","16.33","27.99","16.33","27.99","16.19","749.00","433.31","27.99","16.19","27.99","16.19","27.99","16.19","27.99","16.19","27.99","16.06","27.99","16.06","27.99","15.80","27.99","15.93","119.99","68.29","27.99","15.93","27.99","15.80","124.99","73.52","8990.00","4955.12","27.49","19.25","879.00","615.30","30.99","17.50","209.99","117.59","29.99","17.50","104.90","73.43","1250.00","875.00","579000.00","405300.00","469.99","291.14","8490.00","5943.00","89.99","62.99","7900.00","5530.00","2500.00","1750.00","54900.00","38430.00","16500.00","11550.00","72900.00","51030.00","79.90","55.93","79.90","55.93" -Tier 26,"25.99","18.20","35.99","25.19","499.00","349.30","39.99","25.45","38.99","23.73","3100.00000","2170.00","168.00","115.26","36.98","25.89","203.00","142.10","790.00","527.00","379000.00","265300.00","2000.00","1186.44","1990.00","1180.51","94.99","66.49","91.90","64.33","419.99","257.89","94.99","66.49","94.99","66.49","24.99","14.58","219.00","122.64","269.00","150.64","26.00","16.90","279.00","156.24","28.99","17.34","28.99","17.20","28.99","17.05","28.99","17.05","28.99","16.91","28.99","16.91","54.99","32.08","28.99","16.91","28.99","16.91","28.99","16.77","779.00","450.66","28.99","16.77","28.99","16.77","28.99","16.77","28.99","16.77","28.99","16.63","28.99","16.63","28.99","16.37","28.99","16.50","124.99","71.13","28.99","16.50","28.99","16.37","129.99","76.46","9490.00","5231.00","28.59","20.02","909.00","636.30","32.23","18.20","219.99","123.19","31.19","18.20","109.90","76.93","1290.00","903.00","599000.00","419300.00","479.99","297.34","8990.00","6293.00","94.99","66.49","8200.00","5740.00","2600.00","1820.00","57900.00","40530.00","16900.00","11830.00","74900.00","52430.00","82.90","58.03","82.90","58.03" -Tier 27,"26.99","18.90","36.99","25.89","509.00","356.30","41.99","26.72","39.99","24.34","3200.00000","2240.00","178.00","122.12","38.98","27.29","208.00","145.60","820.00","547.00","389000.00","272300.00","2100.00","1245.76","2050.00","1216.10","97.99","68.59","95.90","67.13","429.99","264.03","99.99","69.99","99.99","69.99","25.99","15.16","229.00","128.24","279.00","156.24","27.00","17.55","289.00","161.84","29.99","17.94","29.99","17.79","29.99","17.64","29.99","17.64","29.99","17.49","29.99","17.49","57.99","33.83","29.99","17.49","29.99","17.49","29.99","17.35","799.00","462.23","29.99","17.35","29.99","17.35","29.99","17.35","29.99","17.35","29.99","17.21","29.99","17.21","29.99","16.93","29.99","17.07","127.99","72.84","29.99","17.07","29.99","16.93","134.99","79.41","9790.00","5396.06","29.69","20.79","949.00","664.30","33.47","18.90","229.99","128.79","32.39","18.90","114.90","80.43","1350.00","945.00","629000.00","440300.00","499.99","309.73","9290.00","6503.00","99.99","69.99","8500.00","5950.00","2700.00","1890.00","59900.00","41930.00","17900.00","12530.00","77900.00","54530.00","84.90","59.43","84.90","59.43" -Tier 28,"27.99","19.60","37.99","26.59","529.00","370.30","42.99","27.36","41.99","25.56","3400.00000","2380.00","188.00","128.98","40.98","28.69","218.00","152.60","840.00","560.00","409000.00","286300.00","2200.00","1305.08","2090.00","1239.83","99.99","69.99","99.90","69.93","449.99","276.31","104.99","73.49","104.99","73.49","26.99","15.74","239.00","133.84","289.00","161.84","28.00","18.20","299.00","167.44","30.99","18.54","30.99","18.38","30.99","18.23","30.99","18.23","30.99","18.08","30.99","18.08","59.99","34.99","30.99","18.08","30.99","18.08","30.99","17.93","829.00","479.59","30.99","17.93","30.99","17.93","30.99","17.93","30.99","17.93","30.99","17.78","30.99","17.78","30.99","17.49","30.99","17.64","129.99","73.98","30.99","17.64","30.99","17.49","139.99","82.35","9990.00","5506.30","30.79","21.56","979.00","685.30","34.71","19.60","239.99","134.39","33.59","19.60","119.90","83.93","1390.00","973.00","649000.00","454300.00","519.99","322.12","9490.00","6643.00","104.99","73.49","8900.00","6230.00","2800.00","1960.00","60900.00","42630.00","18500.00","12950.00","79900.00","55930.00","89.90","62.93","89.90","62.93" -Tier 29,"28.99","20.30","38.99","27.29","549.00","384.30","44.99","28.63","42.99","26.17","3500.00000","2450.00","193.00","132.41","42.98","30.09","228.00","159.60","870.00","580.00","419000.00","293300.00","2250.00","1334.75","2190.00","1299.15","104.99","73.49","103.90","72.73","469.99","288.59","107.99","75.59","107.99","75.59","27.99","16.33","245.00","137.20","299.00","167.44","28.50","18.52","309.00","173.04","31.99","19.14","31.99","18.98","31.99","18.82","31.99","18.82","31.99","18.66","31.99","18.66","62.99","36.74","31.99","18.66","31.99","18.66","31.99","18.51","849.00","491.16","31.99","18.51","31.99","18.51","31.99","18.51","31.99","18.51","31.99","18.35","31.99","18.35","31.99","18.06","31.99","18.21","134.99","76.82","31.99","18.21","31.99","18.06","144.99","85.29","10490.00","5782.00","31.89","22.33","1000.00","700.00","35.95","20.30","244.99","137.19","34.79","20.30","124.90","87.43","1450.00","1015.00","679000.00","475300.00","529.99","328.31","9790.00","6853.00","107.99","75.59","9200.00","6440.00","2900.00","2030.00","62900.00","44030.00","18900.00","13230.00","82900.00","58030.00","92.90","65.03","92.90","65.03" -Tier 30,"29.99","21.00","39.99","27.99","569.00","398.30","46.99","29.90","44.99","27.39","3600.00000","2520.00","198.00","135.84","44.98","31.49","238.00","166.60","890.00","593.33","439000.00","307300.00","2300.00","1364.41","2290.00","1358.47","107.99","75.59","105.90","74.13","479.99","294.73","109.99","76.99","109.99","76.99","28.99","16.91","249.00","139.44","319.00","178.64","29.00","18.85","329.00","184.24","32.99","19.74","32.99","19.57","32.99","19.41","32.99","19.41","32.99","19.24","32.99","19.24","64.99","37.91","32.99","19.24","32.99","19.24","32.99","19.09","899.00","520.08","32.99","19.09","32.99","19.09","32.99","19.09","32.99","19.09","32.99","18.93","32.99","18.93","32.99","18.62","32.99","18.77","139.99","79.67","32.99","18.77","32.99","18.62","149.99","88.23","10990.00","6057.48","32.99","23.10","1050.00","735.00","37.19","21.00","249.99","139.99","35.99","21.00","129.90","90.93","1490.00","1043.00","699000.00","489300.00","549.99","340.70","9990.00","6993.00","109.99","76.99","9500.00","6650.00","3000.00","2100.00","64900.00","45430.00","19900.00","13930.00","84900.00","59430.00","94.90","66.43","94.90","66.43" -Tier 31,"30.99","21.70","41.99","29.39","579.00","405.30","47.99","30.54","45.99","27.99","3700.00000","2590.00","208.00","142.70","45.98","32.19","243.00","170.10","930.00","620.00","449000.00","314300.00","2400.00","1423.73","2350.00","1394.07","109.99","76.99","109.90","76.93","489.99","300.87","114.99","80.49","114.99","80.49","29.99","17.49","259.00","145.04","329.00","184.24","30.00","19.50","339.00","189.84","33.99","20.34","33.99","20.16","33.99","19.99","33.99","19.99","33.99","19.83","33.99","19.83","67.99","39.66","33.99","19.83","33.99","19.83","33.99","19.66","929.00","537.44","33.99","19.66","33.99","19.66","33.99","19.66","33.99","19.66","33.99","19.50","33.99","19.50","33.99","19.19","33.99","19.34","144.99","82.51","33.99","19.34","33.99","19.19","154.99","91.17","11290.00","6223.00","34.09","23.87","1100.00","770.00","38.43","21.70","259.99","145.59","37.19","21.70","134.90","94.43","1550.00","1085.00","709000.00","496300.00","579.99","359.29","10490.00","7343.00","114.99","80.49","9900.00","6930.00","3100.00","2170.00","66900.00","46830.00","20500.00","14350.00","89900.00","62930.00","99.90","69.93","99.90","69.93" -Tier 32,"31.99","22.40","43.99","30.79","599.00","419.30","49.99","31.81","47.99","29.21","3800.00000","2660.00","218.00","149.56","46.98","32.89","248.00","173.60","960.00","640.00","469000.00","328300.00","2500.00","1483.05","2390.00","1417.80","114.99","80.49","113.90","79.73","499.99","307.01","117.99","82.59","117.99","82.59","30.99","18.08","269.00","150.64","339.00","189.84","31.00","20.15","349.00","195.44","34.99","20.93","34.99","20.76","34.99","20.58","34.99","20.58","34.99","20.41","34.99","20.41","69.99","40.83","34.99","20.41","34.99","20.41","34.99","20.24","949.00","549.01","34.99","20.24","34.99","20.24","34.99","20.24","34.99","20.24","34.99","20.08","34.99","20.08","34.99","19.75","34.99","19.91","149.99","85.36","34.99","19.91","34.99","19.75","159.99","94.11","11490.00","6333.07","35.19","24.64","1120.00","784.00","39.67","22.40","269.99","151.19","38.39","22.40","137.90","96.53","1590.00","1113.00","729000.00","510300.00","599.99","371.68","10990.00","7693.00","117.99","82.59","10200.00","7140.00","3200.00","2240.00","67900.00","47530.00","20900.00","14630.00","92900.00","65030.00","102.90","72.03","102.90","72.03" -Tier 33,"32.99","23.10","44.99","31.49","619.00","433.30","51.99","33.08","48.99","29.82","4000.00000","2800.00","223.00","152.99","47.98","33.59","258.00","180.60","990.00","660.00","479000.00","335300.00","2600.00","1542.37","2490.00","1477.12","117.99","82.59","115.90","81.13","519.99","319.29","119.99","83.99","119.99","83.99","31.99","18.66","279.00","156.24","349.00","195.44","32.00","20.80","359.00","201.04","36.99","22.13","36.99","21.94","36.99","21.76","36.99","21.76","36.99","21.58","36.99","21.58","71.99","41.99","36.99","21.58","36.99","21.58","36.99","21.40","979.00","566.36","36.99","21.40","36.99","21.40","36.99","21.40","36.99","21.40","36.99","21.22","36.99","21.22","36.99","20.88","36.99","21.05","154.99","88.21","36.99","21.05","36.99","20.88","164.99","97.05","11990.00","6609.00","36.29","25.41","1150.00","805.00","40.91","23.10","279.99","156.79","39.59","23.10","139.90","97.93","1650.00","1155.00","749000.00","524300.00","619.99","384.06","11490.00","8043.00","119.99","83.99","10500.00","7350.00","3300.00","2310.00","69900.00","48930.00","21900.00","15330.00","94900.00","66430.00","104.90","73.43","104.90","73.43" -Tier 34,"33.99","23.80","46.99","32.89","639.00","447.30","52.99","33.72","50.99","31.04","4100.00000","2870.00","228.00","156.42","48.98","34.29","268.00","187.60","1020.00","680.00","499000.00","349300.00","2650.00","1572.03","2590.00","1536.44","119.99","83.99","119.90","83.93","529.99","325.43","124.99","87.49","124.99","87.49","32.99","19.24","289.00","161.84","359.00","201.04","33.00","21.45","369.00","206.64","37.99","22.73","37.99","22.54","37.99","22.35","37.99","22.35","37.99","22.16","37.99","22.16","72.99","42.58","37.99","22.16","37.99","22.16","37.99","21.98","999.00","577.93","37.99","21.98","37.99","21.98","37.99","21.98","37.99","21.98","37.99","21.80","37.99","21.80","37.99","21.45","37.99","21.62","159.99","91.05","37.99","21.62","37.99","21.45","169.99","99.99","12490.00","6884.25","37.39","26.18","1200.00","840.00","42.15","23.80","289.99","162.39","40.79","23.80","144.90","101.43","1690.00","1183.00","779000.00","545300.00","629.99","390.26","11790.00","8253.00","124.99","87.49","10700.00","7490.00","3400.00","2380.00","72900.00","51030.00","22500.00","15750.00","97900.00","68530.00","109.90","76.93","109.90","76.93" -Tier 35,"34.99","24.50","47.99","33.59","649.00","454.30","54.99","34.99","51.99","31.65","4200.00000","2940.00","233.00","159.85","49.98","34.99","278.00","194.60","1050.00","700.00","509000.00","356300.00","2700.00","1601.70","2650.00","1572.03","124.99","87.49","123.90","86.73","549.99","337.71","127.99","89.59","127.99","89.59","33.99","19.83","295.00","165.20","369.00","206.64","34.00","22.10","379.00","212.24","38.99","23.33","38.99","23.13","38.99","22.94","38.99","22.94","38.99","22.74","38.99","22.74","74.99","43.74","38.99","22.74","38.99","22.74","38.99","22.56","1050.00","607.44","38.99","22.56","38.99","22.56","38.99","22.56","38.99","22.56","38.99","22.37","38.99","22.37","38.99","22.01","38.99","22.19","164.99","93.90","38.99","22.19","38.99","22.01","174.99","102.94","12790.00","7050.00","38.49","26.95","1220.00","854.00","43.39","24.50","299.99","167.99","41.99","24.50","149.90","104.93","1750.00","1225.00","799000.00","559300.00","649.99","402.65","11990.00","8393.00","127.99","89.59","10900.00","7630.00","3500.00","2450.00","74900.00","52430.00","22900.00","16030.00","99900.00","69930.00","112.90","79.03","112.90","79.03" -Tier 36,"35.99","25.20","49.99","34.99","679.00","475.30","55.99","35.63","53.99","32.86","4300.00000","3010.00","238.00","163.29","51.98","36.39","283.00","198.10","1090.00","727.00","529000.00","370300.00","2800.00","1661.02","2690.00","1595.76","127.99","89.59","127.90","89.53","569.99","349.99","129.99","90.99","129.99","90.99","34.99","20.41","299.00","167.44","379.00","212.24","35.00","22.75","389.00","217.84","39.99","23.93","39.99","23.72","39.99","23.52","39.99","23.52","39.99","23.33","39.99","23.33","77.99","45.49","39.99","23.33","39.99","23.33","39.99","23.13","1070.00","619.01","39.99","23.13","39.99","23.13","39.99","23.13","39.99","23.13","39.99","22.95","39.99","22.95","39.99","22.58","39.99","22.76","169.99","96.74","39.99","22.76","39.99","22.58","179.99","105.88","12990.00","7160.00","39.59","27.72","1250.00","875.00","44.63","25.20","309.99","173.59","43.19","25.20","154.90","108.43","1790.00","1253.00","809000.00","566300.00","669.99","415.04","12490.00","8743.00","129.99","90.99","11500.00","8050.00","3600.00","2520.00","77900.00","54530.00","23900.00","16730.00","102900.00","72030.00","114.90","80.43","114.90","80.43" -Tier 37,"36.99","25.90","51.99","36.39","699.00","489.30","57.99","36.90","54.99","33.47","4500.00000","3150.00","243.00","166.72","53.98","37.79","288.00","201.60","1120.00","747.00","539000.00","377300.00","2900.00","1720.34","2790.00","1655.08","129.99","90.99","129.90","90.93","579.99","356.13","134.99","94.49","134.99","94.49","35.99","20.99","309.00","173.04","389.00","217.84","36.00","23.40","399.00","223.44","40.99","24.52","40.99","24.32","40.99","24.11","40.99","24.11","40.99","23.91","40.99","23.91","78.99","46.08","40.99","23.91","40.99","23.91","40.99","23.71","1090.00","630.58","40.99","23.71","40.99","23.71","40.99","23.71","40.99","23.71","40.99","23.52","40.99","23.52","40.99","23.14","40.99","23.33","174.99","99.59","40.99","23.33","40.99","23.14","184.99","108.82","13490.00","7435.43","40.69","28.49","1300.00","910.00","45.87","25.90","319.99","179.19","44.39","25.90","157.90","110.53","1850.00","1295.00","829000.00","580300.00","679.99","421.23","12790.00","8953.00","134.99","94.49","11700.00","8190.00","3700.00","2590.00","79900.00","55930.00","24500.00","17150.00","104900.00","73430.00","119.90","83.93","119.90","83.93" -Tier 38,"37.99","26.60","52.99","37.09","729.00","510.30","59.99","38.18","56.99","34.69","4600.00000","3220.00","248.00","170.15","55.98","39.19","298.00","208.60","1140.00","760.00","559000.00","391300.00","2950.00","1750.00","2890.00","1714.41","134.99","94.49","133.90","93.73","589.99","362.27","139.99","97.99","139.99","97.99","36.99","21.58","319.00","178.64","399.00","223.44","37.00","24.05","409.00","229.04","41.99","25.12","41.99","24.91","41.99","24.70","41.99","24.70","41.99","24.49","41.99","24.49","79.99","46.66","41.99","24.49","41.99","24.49","41.99","24.29","1120.00","647.93","41.99","24.29","41.99","24.29","41.99","24.29","41.99","24.29","41.99","24.09","41.99","24.09","41.99","23.70","41.99","23.90","179.99","102.43","41.99","23.90","41.99","23.70","189.99","111.76","13790.00","7601.00","41.79","29.26","1320.00","924.00","47.11","26.60","329.99","184.79","45.59","26.60","159.90","111.93","1890.00","1323.00","849000.00","594300.00","699.99","433.62","12990.00","9093.00","139.99","97.99","11900.00","8330.00","3800.00","2660.00","82900.00","58030.00","24900.00","17430.00","109900.00","76930.00","122.90","86.03","122.90","86.03" -Tier 39,"38.99","27.30","53.99","37.79","749.00","524.30","60.99","38.81","57.99","35.30","4700.00000","3290.00","253.00","173.58","57.98","40.59","308.00","215.60","1170.00","780.00","569000.00","398300.00","3000.00","1779.66","2950.00","1750.00","139.99","97.99","137.90","96.53","599.99","368.41","144.99","101.49","144.99","101.49","37.99","22.16","329.00","184.24","409.00","229.04","38.00","24.70","419.00","234.64","42.99","25.72","42.99","25.50","42.99","25.29","42.99","25.29","42.99","25.08","42.99","25.08","82.99","48.41","42.99","25.08","42.99","25.08","42.99","24.87","1150.00","665.29","42.99","24.87","42.99","24.87","42.99","24.87","42.99","24.87","42.99","24.67","42.99","24.67","42.99","24.27","42.99","24.47","184.99","105.28","42.99","24.47","42.99","24.27","194.99","114.70","13990.00","7711.02","42.89","30.03","1350.00","945.00","48.35","27.30","339.99","190.39","46.79","27.30","164.90","115.43","1950.00","1365.00","879000.00","615300.00","729.99","452.21","13490.00","9443.00","144.99","101.49","12200.00","8540.00","3900.00","2730.00","84900.00","59430.00","25900.00","18130.00","112900.00","79030.00","124.90","87.43","124.90","87.43" -Tier 40,"39.99","28.00","54.99","38.49","759.00","531.30","62.99","40.08","59.99","36.52","4800.00000","3360.00","258.00","177.01","58.98","41.29","318.00","222.60","1190.00","793.33","589000.00","412300.00","3100.00","1838.98","2990.00","1773.73","144.99","101.49","139.90","97.93","619.99","380.70","147.99","103.59","147.99","103.59","38.99","22.74","339.00","189.84","419.00","234.64","39.00","25.35","439.00","245.84","43.99","26.32","43.99","26.10","43.99","25.88","43.99","25.88","43.99","25.66","43.99","25.66","84.99","49.58","43.99","25.66","43.99","25.66","43.99","25.45","1190.00","688.43","43.99","25.45","43.99","25.45","43.99","25.45","43.99","25.45","43.99","25.24","43.99","25.24","43.99","24.83","43.99","25.03","189.99","108.12","43.99","25.03","43.99","24.83","199.99","117.64","14490.00","7987.00","43.99","30.80","1400.00","980.00","49.59","28.00","344.99","193.19","47.99","28.00","167.90","117.53","1990.00","1393.00","899000.00","629300.00","749.99","464.60","13990.00","9793.00","147.99","103.59","12500.00","8750.00","4000.00","2800.00","87900.00","61530.00","26500.00","18550.00","114900.00","80430.00","129.90","90.93","129.90","90.93" -Tier 41,"40.99","28.70","56.99","39.89","779.00","545.30","64.99","41.36","60.99","37.12","5000.00000","3500.00","263.00","180.44","59.98","41.99","323.00","226.10","1230.00","820.00","599000.00","419300.00","3200.00","1898.31","3090.00","1833.05","147.99","103.59","145.90","102.13","629.99","386.84","149.99","104.99","149.99","104.99","39.99","23.33","349.00","195.44","429.00","240.24","40.00","26.00","449.00","251.44","44.99","26.92","44.99","26.69","44.99","26.46","44.99","26.46","44.99","26.24","44.99","26.24","87.99","51.33","44.99","26.24","44.99","26.24","44.99","26.03","1220.00","705.79","44.99","26.03","44.99","26.03","44.99","26.03","44.99","26.03","44.99","25.81","44.99","25.81","44.99","25.40","44.99","25.60","194.99","110.97","44.99","25.60","44.99","25.40","204.99","120.58","14990.00","8262.20","45.09","31.57","1450.00","1015.00","50.83","28.70","349.99","195.99","49.19","28.70","169.90","118.93","2050.00","1435.00","909000.00","636300.00","759.99","470.79","14290.00","10003.00","149.99","104.99","12900.00","9030.00","4100.00","2870.00","89900.00","62930.00","26900.00","18830.00","117900.00","82530.00","132.90","93.03","132.90","93.03" -Tier 42,"41.99","29.40","57.99","40.59","799.00","559.30","65.99","41.99","62.99","38.34","5100.00000","3570.00","268.00","183.87","60.98","42.69","328.00","229.60","1260.00","840.00","619000.00","433300.00","3250.00","1927.97","3190.00","1892.37","149.99","104.99","149.90","104.93","649.99","399.12","154.99","108.49","154.99","108.49","40.99","23.91","359.00","201.04","439.00","245.84","41.00","26.65","459.00","257.04","46.99","28.11","46.99","27.88","46.99","27.64","46.99","27.64","46.99","27.41","46.99","27.41","89.99","52.49","46.99","27.41","46.99","27.41","46.99","27.18","1250.00","723.14","46.99","27.18","46.99","27.18","46.99","27.18","46.99","27.18","46.99","26.96","46.99","26.96","46.99","26.53","46.99","26.74","199.99","113.82","46.99","26.74","46.99","26.53","209.99","123.52","15290.00","8428.00","46.19","32.34","1500.00","1050.00","52.07","29.40","359.99","201.59","50.39","29.40","174.90","122.43","2090.00","1463.00","929000.00","650300.00","779.99","483.18","14490.00","10143.00","154.99","108.49","13200.00","9240.00","4200.00","2940.00","92900.00","65030.00","27900.00","19530.00","119900.00","83930.00","134.90","94.43","134.90","94.43" -Tier 43,"42.99","30.10","59.99","41.99","809.00","566.30","67.99","43.27","63.99","38.95","5200.00000","3640.00","273.00","187.30","61.98","43.39","338.00","236.60","1290.00","860.00","629000.00","440300.00","3300.00","1957.63","3250.00","1927.97","152.99","107.09","151.90","106.33","669.99","411.40","157.99","110.59","157.99","110.59","41.99","24.49","369.00","206.64","449.00","251.44","42.00","27.30","469.00","262.64","47.99","28.71","47.99","28.47","47.99","28.23","47.99","28.23","47.99","27.99","47.99","27.99","92.99","54.24","47.99","27.99","47.99","27.99","47.99","27.76","1270.00","734.71","47.99","27.76","47.99","27.76","47.99","27.76","47.99","27.76","47.99","27.54","47.99","27.54","47.99","27.09","47.99","27.31","204.99","116.66","47.99","27.31","47.99","27.09","214.99","126.46","15490.00","8538.00","47.29","33.11","1520.00","1064.00","53.31","30.10","369.99","207.19","51.59","30.10","177.90","124.53","2150.00","1505.00","949000.00","664300.00","799.99","495.57","14990.00","10493.00","157.99","110.59","13500.00","9450.00","4300.00","3010.00","94900.00","66430.00","28500.00","19950.00","122900.00","86030.00","139.90","97.93","139.90","97.93" -Tier 44,"43.99","30.80","61.99","43.39","829.00","580.30","68.99","43.90","65.99","40.17","5300.00000","3710.00","278.00","190.73","62.98","44.09","348.00","243.60","1320.00","880.00","649000.00","454300.00","3400.00","2016.95","3290.00","1951.69","154.99","108.49","155.90","109.13","679.99","417.54","159.99","111.99","159.99","111.99","42.99","25.08","379.00","212.24","459.00","257.04","43.00","27.95","479.00","268.24","48.99","29.31","48.99","29.06","48.99","28.82","48.99","28.82","48.99","28.58","48.99","28.58","94.99","55.41","48.99","28.58","48.99","28.58","48.99","28.34","1290.00","746.28","48.99","28.34","48.99","28.34","48.99","28.34","48.99","28.34","48.99","28.11","48.99","28.11","48.99","27.66","48.99","27.88","209.99","119.51","48.99","27.88","48.99","27.66","219.99","129.41","15990.00","8813.39","48.39","33.88","1550.00","1085.00","54.55","30.80","379.99","212.79","52.79","30.80","179.90","125.93","2190.00","1533.00","979000.00","685300.00","819.99","507.96","15290.00","10703.00","159.99","111.99","13900.00","9730.00","4400.00","3080.00","96900.00","67830.00","28900.00","20230.00","124900.00","87430.00","142.90","100.03","142.90","100.03" -Tier 45,"44.99","31.50","62.99","44.09","849.00","594.30","69.99","44.54","66.99","40.78","5400.00000","3780.00","283.00","194.16","63.98","44.79","358.00","250.60","1350.00","900.00","659000.00","461300.00","3500.00","2076.27","3390.00","2011.02","159.99","111.99","159.90","111.93","699.99","429.82","164.99","115.49","164.99","115.49","43.99","25.66","389.00","217.84","469.00","262.64","44.00","28.60","489.00","273.84","49.99","29.91","49.99","29.66","49.99","29.41","49.99","29.41","49.99","29.16","49.99","29.16","97.99","57.16","49.99","29.16","49.99","29.16","49.99","28.92","1320.00","763.64","49.99","28.92","49.99","28.92","49.99","28.92","49.99","28.92","49.99","28.68","49.99","28.68","49.99","28.22","49.99","28.45","214.99","122.35","49.99","28.45","49.99","28.22","224.99","132.35","16490.00","9089.00","49.49","34.65","1600.00","1120.00","55.79","31.50","389.99","218.39","53.99","31.50","184.90","129.43","2250.00","1575.00","999000.00","699300.00","829.99","514.15","15490.00","10843.00","164.99","115.49","14200.00","9940.00","4500.00","3150.00","97900.00","68530.00","29500.00","20650.00","129900.00","90930.00","144.90","101.43","144.90","101.43" -Tier 46,"45.99","32.20","63.99","44.79","879.00","615.30","71.99","45.81","68.99","41.99","5600.00000","3920.00","288.00","197.59","64.98","45.49","363.00","254.10","1390.00","927.00","679000.00","475300.00","3600.00","2135.59","3490.00","2070.34","164.99","115.49","163.90","114.73","719.99","442.10","167.99","117.59","167.99","117.59","44.99","26.24","399.00","223.44","479.00","268.24","45.00","29.25","499.00","279.44","50.99","30.51","50.99","30.25","50.99","29.99","50.99","29.99","50.99","29.74","50.99","29.74","99.99","58.33","50.99","29.74","50.99","29.74","50.99","29.50","1350.00","780.99","50.99","29.50","50.99","29.50","50.99","29.50","50.99","29.50","50.99","29.26","50.99","29.26","50.99","28.78","50.99","29.02","219.99","125.20","50.99","29.02","50.99","28.78","229.99","135.29","16790.00","9254.33","50.59","35.42","1620.00","1134.00","57.03","32.20","394.99","221.19","55.19","32.20","187.90","131.53","2290.00","1603.00","1009000.00","706300.00","849.99","526.54","15990.00","11193.00","167.99","117.59","14500.00","10150.00","4600.00","3220.00","99900.00","69930.00","29900.00","20930.00","132900.00","93030.00","149.90","104.93","149.90","104.93" -Tier 47,"46.99","32.90","64.99","45.49","899.00","629.30","72.99","46.45","69.99","42.60","5700.00000","3990.00","298.00","204.45","65.98","46.19","368.00","257.60","1420.00","947.00","689000.00","482300.00","3700.00","2194.92","3590.00","2129.66","169.99","118.99","165.90","116.13","729.99","448.24","169.99","118.99","169.99","118.99","45.99","26.83","409.00","229.04","489.00","273.84","46.00","29.90","509.00","285.04","51.99","31.11","51.99","30.84","51.99","30.58","51.99","30.58","51.99","30.33","51.99","30.33","102.99","60.08","51.99","30.33","51.99","30.33","51.99","30.08","1370.00","792.56","51.99","30.08","51.99","30.08","51.99","30.08","51.99","30.08","51.99","29.83","51.99","29.83","51.99","29.35","51.99","29.59","224.99","128.04","51.99","29.59","51.99","29.35","234.99","138.23","16990.00","9365.00","51.69","36.19","1650.00","1155.00","58.27","32.90","399.99","223.99","56.39","32.90","189.90","132.93","2350.00","1645.00","1029000.00","720300.00","869.99","538.93","16290.00","11403.00","169.99","118.99","14900.00","10430.00","4700.00","3290.00","102900.00","72030.00","30900.00","21630.00","134900.00","94430.00","152.90","107.03","152.90","107.03" -Tier 48,"47.99","33.60","66.99","46.89","909.00","636.30","74.99","47.72","71.99","43.82","5800.00000","4060.00","308.00","211.31","66.98","46.89","378.00","264.60","1440.00","960.00","709000.00","496300.00","3800.00","2254.24","3650.00","2165.25","174.99","122.49","169.90","118.93","749.99","460.52","174.99","122.49","174.99","122.49","46.99","27.41","419.00","234.64","499.00","279.44","47.00","30.55","519.00","290.64","52.99","31.70","52.99","31.43","52.99","31.17","52.99","31.17","52.99","30.91","52.99","30.91","104.99","61.24","52.99","30.91","52.99","30.91","52.99","30.66","1390.00","804.13","52.99","30.66","52.99","30.66","52.99","30.66","52.99","30.66","52.99","30.40","52.99","30.40","52.99","29.91","52.99","30.16","229.99","130.89","52.99","30.16","52.99","29.91","239.99","141.17","17490.00","9640.16","52.79","36.96","1700.00","1190.00","59.51","33.60","409.99","229.59","57.59","33.60","194.90","136.43","2390.00","1673.00","1049000.00","734300.00","879.99","545.13","16490.00","11543.00","174.99","122.49","15200.00","10640.00","4800.00","3360.00","104900.00","73430.00","31900.00","22330.00","137900.00","96530.00","154.90","108.43","154.90","108.43" -Tier 49,"48.99","34.30","67.99","47.59","929.00","650.30","77.99","49.63","72.99","44.43","5900.00000","4130.00","318.00","218.17","67.98","47.59","388.00","271.60","1470.00","980.00","719000.00","503300.00","3900.00","2313.56","3690.00","2188.98","179.99","125.99","173.90","121.73","779.99","478.94","179.99","125.99","179.99","125.99","47.99","27.99","429.00","240.24","509.00","285.04","47.50","30.87","529.00","296.24","53.99","32.30","53.99","32.03","53.99","31.76","53.99","31.76","53.99","31.49","53.99","31.49","107.99","62.99","53.99","31.49","53.99","31.49","53.99","31.23","1450.00","838.84","53.99","31.23","53.99","31.23","53.99","31.23","53.99","31.23","53.99","30.98","53.99","30.98","53.99","30.48","53.99","30.73","234.99","133.73","53.99","30.73","53.99","30.48","244.99","144.11","17790.00","9806.00","53.89","37.73","1720.00","1204.00","60.75","34.30","419.99","235.19","58.79","34.30","197.90","138.53","2450.00","1715.00","1079000.00","755300.00","899.99","557.52","16790.00","11753.00","179.99","125.99","15500.00","10850.00","4900.00","3430.00","107900.00","75530.00","32900.00","23030.00","139900.00","97930.00","159.90","111.93","159.90","111.93" -Tier 50,"49.99","35.00","69.99","48.99","949.00","664.30","79.99","50.90","74.99","45.65","6000.00000","4200.00","328.00","225.03","68.98","48.29","398.00","278.60","1490.00","993.33","739000.00","517300.00","4000.00","2372.88","3790.00","2248.31","184.99","129.49","179.90","125.93","799.99","491.22","184.99","129.49","184.99","129.49","48.99","28.58","449.00","251.44","519.00","290.64","48.00","31.20","549.00","307.44","54.99","32.90","54.99","32.62","54.99","32.35","54.99","32.35","54.99","32.08","54.99","32.08","109.99","64.16","54.99","32.08","54.99","32.08","54.99","31.81","1490.00","861.98","54.99","31.81","54.99","31.81","54.99","31.81","54.99","31.81","54.99","31.55","54.99","31.55","54.99","31.04","54.99","31.30","239.99","136.58","54.99","31.30","54.99","31.04","249.99","147.05","17990.00","9916.00","54.99","38.50","1750.00","1225.00","61.99","35.00","429.99","240.79","59.99","35.00","199.90","139.93","2490.00","1743.00","1099000.00","769300.00","949.99","588.49","16990.00","11893.00","184.99","129.49","15900.00","11130.00","5000.00","3500.00","109900.00","76930.00","33900.00","23730.00","149900.00","104930.00","169.90","118.93","169.90","118.93" -Tier 51,"54.99","38.50","74.99","52.49","999.00","699.30","84.99","54.08","79.99","48.69","6800.00000","4760.00","348.00","238.75","78.98","55.29","418.00","292.60","1590.00","1060.00","799000.00","559300.00","4500.00","2669.49","3990.00","2366.95","199.99","139.99","199.90","139.93","849.99","521.92","199.99","139.99","199.99","139.99","49.99","29.16","479.00","268.24","595.00","333.20","55.00","35.75","599.00","335.44","59.99","35.89","59.99","35.59","59.99","35.29","59.99","35.29","59.99","34.99","59.99","34.99","119.99","69.99","59.99","34.99","59.99","34.99","59.99","34.70","1690.00","977.69","59.99","34.70","59.99","34.70","59.99","34.70","59.99","34.70","59.99","34.42","59.99","34.42","59.99","33.87","59.99","34.14","259.99","147.96","59.99","34.14","59.99","33.87","279.99","164.70","19990.00","11018.11","60.49","42.35","1900.00","1330.00","68.19","38.50","479.99","268.79","65.99","38.50","229.90","160.93","2790.00","1953.00","1199000.00","839300.00","999.99","619.46","17990.00","12593.00","199.99","139.99","17900.00","12530.00","5500.00","3850.00","119900.00","83930.00","35900.00","25130.00","159900.00","111930.00","179.90","125.93","179.90","125.93" -Tier 52,"59.99","42.00","84.99","59.49","1099.00","769.30","89.99","57.27","89.99","54.78","7400.00000","5180.00","388.00","266.20","88.98","62.29","448.00","313.60","1790.00","1193.33","899000.00","629300.00","4900.00","2906.78","4490.00","2663.56","219.99","153.99","209.90","146.93","899.99","552.63","219.99","153.99","219.99","153.99","54.99","32.08","499.00","279.44","649.00","363.44","60.00","39.00","649.00","363.44","64.99","38.88","64.99","38.55","64.99","38.23","64.99","38.23","64.99","37.91","64.99","37.91","129.99","75.83","64.99","37.91","64.99","37.91","64.99","37.60","1790.00","1035.54","64.99","37.60","64.99","37.60","64.99","37.60","64.99","37.60","64.99","37.29","64.99","37.29","64.99","36.69","64.99","36.99","279.99","159.34","64.99","36.99","64.99","36.69","299.99","176.46","21990.00","12120.47","65.99","46.20","2100.00","1470.00","74.39","42.00","499.99","279.99","71.99","42.00","249.90","174.93","2990.00","2093.00","1299000.00","909300.00","1099.99","681.41","19990.00","13993.00","219.99","153.99","19900.00","13930.00","5900.00","4130.00","129900.00","90930.00","39900.00","27930.00","179900.00","125930.00","199.90","139.93","199.90","139.93" -Tier 53,"64.99","45.50","89.99","62.99","1199.00","839.30","99.99","63.63","94.99","57.82","7800.00000","5460.00","418.00","286.78","94.98","66.49","488.00","341.60","1990.00","1327.00","949000.00","664300.00","5200.00","3084.75","4990.00","2960.17","229.99","160.99","229.90","160.93","999.99","614.03","229.99","160.99","229.99","160.99","59.99","34.99","549.00","307.44","695.00","389.20","65.00","42.25","699.00","391.44","69.99","41.87","69.99","41.52","69.99","41.17","69.99","41.17","69.99","40.83","69.99","40.83","139.99","81.66","69.99","40.83","69.99","40.83","69.99","40.49","1990.00","1151.24","69.99","40.49","69.99","40.49","69.99","40.49","69.99","40.49","69.99","40.16","69.99","40.16","69.99","39.51","69.99","39.83","299.99","170.73","69.99","39.83","69.99","39.51","329.99","194.11","22990.00","12672.00","71.49","50.05","2300.00","1610.00","80.59","45.50","549.99","307.99","77.99","45.50","279.90","195.93","3290.00","2303.00","1399000.00","979300.00","1199.99","743.36","22990.00","16093.00","229.99","160.99","20900.00","14630.00","6500.00","4550.00","139900.00","97930.00","42900.00","30030.00","189900.00","132930.00","209.90","146.93","209.90","146.93" -Tier 54,"69.99","49.00","99.99","69.99","1299.00","909.30","109.99","69.99","99.99","60.86","8400.00000","5880.00","448.00","307.36","98.98","69.29","548.00","383.60","2090.00","1393.33","999000.00","699300.00","5500.00","3262.71","5490.00","3256.78","249.99","174.99","249.90","174.93","1099.99","675.43","249.99","174.99","249.99","174.99","64.99","37.91","599.00","335.44","749.00","419.44","70.00","45.50","749.00","419.44","74.99","44.87","74.99","44.49","74.99","44.11","74.99","44.11","74.99","43.74","74.99","43.74","149.99","87.49","74.99","43.74","74.99","43.74","74.99","43.38","2090.00","1209.09","74.99","43.38","74.99","43.38","74.99","43.38","74.99","43.38","74.99","43.03","74.99","43.03","74.99","42.33","74.99","42.68","329.99","187.80","74.99","42.68","74.99","42.33","349.99","205.88","24990.00","13774.02","76.99","53.90","2500.00","1750.00","86.79","49.00","599.99","335.99","83.99","49.00","299.90","209.93","3490.00","2443.00","1499000.00","1049300.00","1299.99","805.30","24990.00","17493.00","249.99","174.99","22900.00","16030.00","6900.00","4830.00","149900.00","104930.00","44900.00","31430.00","199900.00","139930.00","229.90","160.93","229.90","160.93" -Tier 55,"74.99","52.50","104.99","73.49","1399.00","979.30","119.99","76.36","109.99","66.95","8800.00000","6160.00","488.00","334.80","104.98","73.49","588.00","411.60","2190.00","1460.00","1099000.00","769300.00","5900.00","3500.00","5790.00","3434.75","269.99","188.99","259.90","181.93","1199.99","736.84","279.99","195.99","279.99","195.99","69.99","40.83","649.00","363.44","795.00","445.20","75.00","48.75","799.00","447.44","79.99","47.86","79.99","47.45","79.99","47.05","79.99","47.05","79.99","46.66","79.99","46.66","159.99","93.33","79.99","46.66","79.99","46.66","79.99","46.28","2290.00","1324.79","79.99","46.28","79.99","46.28","79.99","46.28","79.99","46.28","79.99","45.90","79.99","45.90","79.99","45.16","79.99","45.52","349.99","199.18","79.99","45.52","79.99","45.16","379.99","223.52","27990.00","15428.00","82.49","57.75","2700.00","1890.00","92.99","52.50","649.99","363.99","89.99","52.50","329.90","230.93","3790.00","2653.00","1699000.00","1189300.00","1399.99","867.25","25990.00","18193.00","279.99","195.99","23900.00","16730.00","7500.00","5250.00","159900.00","111930.00","47900.00","33530.00","219900.00","153930.00","249.90","174.93","249.90","174.93" -Tier 56,"79.99","56.00","109.99","76.99","1499.00","1049.30","124.99","79.54","119.99","73.04","9800.00000","6860.00","518.00","355.39","108.98","76.29","618.00","432.60","2390.00","1593.33","1199000.00","839300.00","6200.00","3677.97","5990.00","3553.39","279.99","195.99","279.90","195.93","1249.99","767.54","299.99","209.99","299.99","209.99","74.99","43.74","699.00","391.44","849.00","475.44","80.00","52.00","849.00","475.44","89.99","53.84","89.99","53.38","89.99","52.94","89.99","52.94","89.99","52.49","89.99","52.49","169.99","99.16","89.99","52.49","89.99","52.49","89.99","52.06","2390.00","1382.64","89.99","52.06","89.99","52.06","89.99","52.06","89.99","52.06","89.99","51.63","89.99","51.63","89.99","50.80","89.99","51.21","379.99","216.25","89.99","51.21","89.99","50.80","399.99","235.29","29990.00","16530.00","87.99","61.60","2800.00","1960.00","99.19","56.00","699.99","391.99","95.99","56.00","349.90","244.93","3990.00","2793.00","1799000.00","1259300.00","1499.99","929.20","27990.00","19593.00","299.99","209.99","24900.00","17430.00","7900.00","5530.00","179900.00","125930.00","49900.00","34930.00","229900.00","160930.00","259.90","181.93","259.90","181.93" -Tier 57,"84.99","59.50","114.99","80.49","1599.00","1119.30","129.99","82.72","124.99","76.08","10400.00000","7280.00","548.00","375.97","118.98","83.29","648.00","453.60","2490.00","1660.00","1249000.00","874300.00","6500.00","3855.93","6490.00","3850.00","299.99","209.99","299.90","209.93","1299.99","798.24","319.99","223.99","319.99","223.99","79.99","46.66","749.00","419.44","895.00","501.20","85.00","55.25","899.00","503.44","94.99","56.83","94.99","56.35","94.99","55.88","94.99","55.88","94.99","55.41","94.99","55.41","179.99","104.99","94.99","55.41","94.99","55.41","94.99","54.95","2490.00","1440.50","94.99","54.95","94.99","54.95","94.99","54.95","94.99","54.95","94.99","54.50","94.99","54.50","94.99","53.62","94.99","54.06","399.99","227.64","94.99","54.06","94.99","53.62","429.99","252.94","30990.00","17081.10","93.49","65.45","3000.00","2100.00","105.39","59.50","749.99","419.99","101.99","59.50","369.90","258.93","4290.00","3003.00","1899000.00","1329300.00","1599.99","991.14","29990.00","20993.00","319.99","223.99","26900.00","18830.00","8500.00","5950.00","189900.00","132930.00","54900.00","38430.00","249900.00","174930.00","279.90","195.93","279.90","195.93" -Tier 58,"89.99","63.00","119.99","83.99","1699.00","1189.30","139.99","89.08","129.99","79.12","10800.00000","7560.00","588.00","403.41","128.98","90.29","688.00","481.60","2690.00","1793.33","1299000.00","909300.00","6900.00","4093.22","6990.00","4146.61","319.99","223.99","319.90","223.93","1399.99","859.64","329.99","230.99","329.99","230.99","84.99","49.58","799.00","447.44","949.00","531.44","90.00","58.50","949.00","531.44","99.99","59.82","99.99","59.32","99.99","58.82","99.99","58.82","99.99","58.33","99.99","58.33","189.99","110.83","99.99","58.33","99.99","58.33","99.99","57.85","2690.00","1556.20","99.99","57.85","99.99","57.85","99.99","57.85","99.99","57.85","99.99","57.37","99.99","57.37","99.99","56.45","99.99","56.90","429.99","244.71","99.99","56.90","99.99","56.45","449.99","264.70","32990.00","18183.46","98.99","69.30","3200.00","2240.00","111.59","63.00","799.99","447.99","107.99","63.00","379.90","265.93","4490.00","3143.00","1999000.00","1399300.00","1699.99","1053.09","30990.00","21693.00","329.99","230.99","27900.00","19530.00","8900.00","6230.00","199900.00","139930.00","59900.00","41930.00","259900.00","181930.00","299.90","209.93","299.90","209.93" -Tier 59,"94.99","66.50","129.99","90.99","1799.00","1259.30","149.99","95.45","139.99","85.21","11400.00000","7980.00","618.00","423.99","138.98","97.29","748.00","523.60","2790.00","1860.00","1399000.00","979300.00","7500.00","4449.15","7290.00","4324.58","339.99","237.99","329.90","230.93","1449.99","890.34","349.99","244.99","349.99","244.99","89.99","52.49","849.00","475.44","995.00","557.20","95.00","61.75","999.00","559.44","104.99","62.81","104.99","62.28","104.99","61.76","104.99","61.76","104.99","61.24","104.99","61.24","199.99","116.66","104.99","61.24","104.99","61.24","104.99","60.74","2790.00","1614.05","104.99","60.74","104.99","60.74","104.99","60.74","104.99","60.74","104.99","60.24","104.99","60.24","104.99","59.27","104.99","59.75","449.99","256.09","104.99","59.75","104.99","59.27","479.99","282.35","34990.00","19286.00","104.49","73.15","3300.00","2310.00","117.79","66.50","849.99","475.99","113.99","66.50","389.90","272.93","4790.00","3353.00","2099000.00","1469300.00","1799.99","1115.04","32990.00","23093.00","349.99","244.99","28900.00","20230.00","9500.00","6650.00","209900.00","146930.00","64900.00","45430.00","279900.00","195930.00","309.90","216.93","309.90","216.93" -Tier 60,"99.99","70.00","139.99","97.99","1899.00","1329.30","159.99","101.81","149.99","91.30","11800.00000","8260.00","648.00","444.58","148.98","104.29","788.00","551.60","2990.00","1993.33","1499000.00","1049300.00","7900.00","4686.44","7490.00","4443.22","349.99","244.99","349.90","244.93","1499.99","921.05","369.99","258.99","369.99","258.99","99.99","58.33","899.00","503.44","1095.00","613.20","100.00","65.00","1090.00","610.40","109.99","65.81","109.99","65.25","109.99","64.70","109.99","64.70","109.99","64.16","109.99","64.16","219.99","128.33","109.99","64.16","109.99","64.16","109.99","63.63","2990.00","1729.75","109.99","63.63","109.99","63.63","109.99","63.63","109.99","63.63","109.99","63.11","109.99","63.11","109.99","62.09","109.99","62.60","479.99","273.17","109.99","62.60","109.99","62.09","499.99","294.11","36990.00","20388.19","109.99","77.00","3500.00","2450.00","123.99","70.00","899.99","503.99","119.99","70.00","399.90","279.93","4990.00","3493.00","2199000.00","1539300.00","1899.99","1176.99","34990.00","24493.00","369.99","258.99","29900.00","20930.00","9900.00","6930.00","219900.00","153930.00","69900.00","48930.00","299900.00","209930.00","329.90","230.93","329.90","230.93" -Tier 61,"109.99","77.00","149.99","104.99","1999.00","1399.30","169.99","108.18","159.99","97.39","12800.00000","8960.00","698.00","478.88","158.98","111.29","848.00","593.60","3290.00","2193.33","1599000.00","1119300.00","8500.00","5042.37","8490.00","5036.44","399.99","279.99","399.90","279.93","1699.99","1043.85","399.99","279.99","399.99","279.99","109.99","64.16","949.00","531.44","1195.00","669.20","110.00","71.49","1190.00","666.40","119.99","71.79","119.99","71.18","119.99","70.58","119.99","70.58","119.99","69.99","119.99","69.99","229.99","134.16","119.99","69.99","119.99","69.99","119.99","69.42","3290.00","1903.31","119.99","69.42","119.99","69.42","119.99","69.42","119.99","69.42","119.99","68.85","119.99","68.85","119.99","67.74","119.99","68.29","529.99","301.62","119.99","68.29","119.99","67.74","549.99","323.52","39990.00","22042.00","120.99","84.70","3900.00","2730.00","136.39","77.00","949.99","531.99","131.99","77.00","449.90","314.93","5490.00","3843.00","2299000.00","1609300.00","1999.99","1238.93","37990.00","26593.00","399.99","279.99","34900.00","24430.00","10900.00","7630.00","229900.00","160930.00","74900.00","52430.00","329900.00","230930.00","349.90","244.93","349.90","244.93" -Tier 62,"119.99","84.00","159.99","111.99","2299.00","1609.30","179.99","114.54","179.99","109.56","13800.00000","9660.00","798.00","547.49","168.98","118.29","888.00","621.60","3590.00","2393.33","1799000.00","1259300.00","8900.00","5279.66","8990.00","5333.05","429.99","300.99","429.90","300.93","1799.99","1105.26","429.99","300.99","429.99","300.99","119.99","69.99","999.00","559.44","1295.00","725.20","120.00","77.99","1250.00","700.00","129.99","77.77","129.99","77.11","129.99","76.46","129.99","76.46","129.99","75.83","129.99","75.83","249.99","145.83","129.99","75.83","129.99","75.83","129.99","75.20","3490.00","2019.01","129.99","75.20","129.99","75.20","129.99","75.20","129.99","75.20","129.99","74.58","129.99","74.58","129.99","73.38","129.99","73.98","549.99","313.00","129.99","73.98","129.99","73.38","599.99","352.94","42990.00","23695.28","131.99","92.40","4200.00","2940.00","148.79","84.00","999.99","559.99","143.99","84.00","499.90","349.93","5990.00","4193.00","2499000.00","1749300.00","2299.99","1424.77","39990.00","27993.00","429.99","300.99","37900.00","26530.00","11900.00","8330.00","249900.00","174930.00","79900.00","55930.00","349900.00","244930.00","399.90","279.93","399.90","279.93" -Tier 63,"124.99","87.50","169.99","118.99","2399.00","1679.30","189.99","120.90","189.99","115.65","14800.00000","10360.00","818.00","561.21","178.98","125.29","988.00","691.60","3790.00","2527.00","1849000.00","1294300.00","9500.00","5635.59","9490.00","5629.66","449.99","314.99","449.90","314.93","1899.99","1166.66","449.99","314.99","449.99","314.99","124.99","72.91","1049.00","587.44","1349.00","755.44","125.00","81.24","1290.00","722.40","139.99","83.75","139.99","83.04","139.99","82.35","139.99","82.35","139.99","81.66","139.99","81.66","269.99","157.49","139.99","81.66","139.99","81.66","139.99","80.99","3690.00","2134.71","139.99","80.99","139.99","80.99","139.99","80.99","139.99","80.99","139.99","80.32","139.99","80.32","139.99","79.03","139.99","79.67","599.99","341.46","139.99","79.67","139.99","79.03","629.99","370.58","44990.00","24798.00","137.49","96.25","4400.00","3080.00","154.99","87.50","1049.99","587.99","149.99","87.50","529.90","370.93","6290.00","4403.00","2799000.00","1959300.00","2399.99","1486.72","42990.00","30093.00","449.99","314.99","39900.00","27930.00","12900.00","9030.00","269900.00","188930.00","84900.00","59430.00","359900.00","251930.00","409.90","286.93","409.90","286.93" -Tier 64,"129.99","91.00","179.99","125.99","2499.00","1749.30","199.99","127.27","199.99","121.73","15800.00000","11060.00","848.00","581.79","188.98","132.29","1048.00","733.60","3890.00","2593.33","1899000.00","1329300.00","9900.00","5872.88","9990.00","5926.27","479.99","335.99","459.90","321.93","1999.99","1228.06","479.99","335.99","479.99","335.99","129.99","75.83","1099.00","615.44","1395.00","781.20","130.00","84.49","1390.00","778.40","149.99","89.74","149.99","88.98","149.99","88.23","149.99","88.23","149.99","87.49","149.99","87.49","279.99","163.33","149.99","87.49","149.99","87.49","149.99","86.77","3790.00","2192.56","149.99","86.77","149.99","86.77","149.99","86.77","149.99","86.77","149.99","86.06","149.99","86.06","149.99","84.67","149.99","85.36","629.99","358.53","149.99","85.36","149.99","84.67","649.99","382.35","47990.00","26451.18","142.99","100.10","4600.00","3220.00","161.19","91.00","1099.99","615.99","155.99","91.00","549.90","384.93","6490.00","4543.00","2999000.00","2099300.00","2499.99","1548.67","44990.00","31493.00","479.99","335.99","42900.00","30030.00","13900.00","9730.00","279900.00","195930.00","89900.00","62930.00","379900.00","265930.00","429.90","300.93","429.90","300.93" -Tier 65,"139.99","98.00","199.99","139.99","2699.00","1889.30","219.99","139.99","209.99","127.82","16800.00000","11760.00","898.00","616.09","198.98","139.29","1088.00","761.60","4190.00","2793.33","1999000.00","1399300.00","10900.00","6466.10","10990.00","6519.49","499.99","349.99","499.90","349.93","2199.99","1350.87","499.99","349.99","499.99","349.99","139.99","81.66","1199.00","671.44","1495.00","837.20","140.00","90.99","1490.00","834.40","159.99","95.72","159.99","94.91","159.99","94.11","159.99","94.11","159.99","93.33","159.99","93.33","299.99","174.99","159.99","93.33","159.99","93.33","159.99","92.56","3990.00","2308.26","159.99","92.56","159.99","92.56","159.99","92.56","159.99","92.56","159.99","91.80","159.99","91.80","159.99","90.32","159.99","91.05","649.99","369.91","159.99","91.05","159.99","90.32","699.99","411.76","49990.00","27554.00","153.99","107.80","4900.00","3430.00","173.59","98.00","1199.99","671.99","167.99","98.00","579.90","405.93","6990.00","4893.00","3099000.00","2169300.00","2599.99","1610.61","49990.00","34993.00","499.99","349.99","44900.00","31430.00","14900.00","10430.00","299900.00","209930.00","94900.00","66430.00","399900.00","279930.00","449.90","314.93","449.90","314.93" -Tier 66,"149.99","105.00","209.99","146.99","2899.00","2029.30","229.99","146.36","219.99","133.91","17800.00000","12460.00","998.00","684.70","218.98","153.29","1188.00","831.60","4490.00","2993.33","2199000.00","1539300.00","11900.00","7059.32","11490.00","6816.10","529.99","370.99","539.90","377.93","2299.99","1412.27","549.99","384.99","549.99","384.99","149.99","87.49","1299.00","727.44","1595.00","893.20","150.00","97.49","1590.00","890.40","169.99","101.70","169.99","100.84","169.99","99.99","169.99","99.99","169.99","99.16","169.99","99.16","329.99","192.49","169.99","99.16","169.99","99.16","169.99","98.34","4490.00","2597.52","169.99","98.34","169.99","98.34","169.99","98.34","169.99","98.34","169.99","97.54","169.99","97.54","169.99","95.96","169.99","96.74","699.99","398.37","169.99","96.74","169.99","95.96","749.99","441.17","54990.00","30309.45","164.99","115.50","5200.00","3640.00","185.99","105.00","1299.99","727.99","179.99","105.00","599.90","419.93","7490.00","5243.00","3299000.00","2309300.00","2799.99","1734.51","52990.00","37093.00","549.99","384.99","47900.00","33530.00","15900.00","11130.00","329900.00","230930.00","99900.00","69930.00","429900.00","300930.00","479.90","335.93","479.90","335.93" -Tier 67,"159.99","112.00","219.99","153.99","2999.00","2099.30","249.99","159.08","239.99","146.08","18800.00000","13160.00","1048.00","719.00","228.98","160.29","1248.00","873.60","4790.00","3193.33","2399000.00","1679300.00","12500.00","7415.26","11990.00","7112.71","549.99","384.99","559.90","391.93","2499.99","1535.08","579.99","405.99","579.99","405.99","159.99","93.33","1399.00","783.44","1695.00","949.20","160.00","103.99","1690.00","946.40","179.99","107.69","179.99","106.77","179.99","105.88","179.99","105.88","179.99","104.99","179.99","104.99","349.99","204.16","179.99","104.99","179.99","104.99","179.99","104.13","4790.00","2771.07","179.99","104.13","179.99","104.13","179.99","104.13","179.99","104.13","179.99","103.27","179.99","103.27","179.99","101.61","179.99","102.43","749.99","426.82","179.99","102.43","179.99","101.61","799.99","470.58","57990.00","31963.00","175.99","123.20","5700.00","3990.00","198.39","112.00","1399.99","783.99","191.99","112.00","649.90","454.93","7990.00","5593.00","3499000.00","2449300.00","2999.99","1858.40","54990.00","38493.00","579.99","405.99","49900.00","34930.00","16900.00","11830.00","349900.00","244930.00","104900.00","73430.00","449900.00","314930.00","499.90","349.93","499.90","349.93" -Tier 68,"169.99","119.00","229.99","160.99","3299.00","2309.30","259.99","165.45","249.99","152.17","19800.00000","13860.00","1098.00","753.31","238.98","167.29","1288.00","901.60","5090.00","3393.33","2499000.00","1749300.00","12900.00","7652.54","12990.00","7705.93","579.99","405.99","599.90","419.93","2599.99","1596.49","599.99","419.99","599.99","419.99","169.99","99.16","1449.00","811.44","1795.00","1005.20","170.00","110.49","1750.00","980.00","189.99","113.67","189.99","112.71","189.99","111.76","189.99","111.76","189.99","110.83","189.99","110.83","369.99","215.83","189.99","110.83","189.99","110.83","189.99","109.91","4990.00","2886.78","189.99","109.91","189.99","109.91","189.99","109.91","189.99","109.91","189.99","109.01","189.99","109.01","189.99","107.25","189.99","108.12","799.99","455.28","189.99","108.12","189.99","107.25","849.99","499.99","59990.00","33065.35","186.99","130.90","5900.00","4130.00","210.79","119.00","1449.99","811.99","203.99","119.00","699.90","489.93","8490.00","5943.00","3799000.00","2659300.00","3199.99","1982.29","57990.00","40593.00","599.99","419.99","52900.00","37030.00","17900.00","12530.00","379900.00","265930.00","109900.00","76930.00","479900.00","335930.00","549.90","384.93","549.90","384.93" -Tier 69,"174.99","122.50","239.99","167.99","3399.00","2379.30","269.99","171.81","259.99","158.25","20800.00000","14560.00","1148.00","787.61","248.98","174.29","1388.00","971.60","5290.00","3527.00","2599000.00","1819300.00","13500.00","8008.48","13490.00","8002.54","599.99","419.99","619.90","433.93","2699.99","1657.89","649.99","454.99","649.99","454.99","174.99","102.08","1499.00","839.44","1849.00","1035.44","175.00","113.74","1790.00","1002.40","199.99","119.65","199.99","118.64","199.99","117.64","199.99","117.64","199.99","116.66","199.99","116.66","379.99","221.66","199.99","116.66","199.99","116.66","199.99","115.70","5290.00","3060.33","199.99","115.70","199.99","115.70","199.99","115.70","199.99","115.70","199.99","114.75","199.99","114.75","199.99","112.90","199.99","113.82","829.99","472.35","199.99","113.82","199.99","112.90","879.99","517.64","62990.00","34719.00","192.49","134.75","6200.00","4340.00","216.99","122.50","1499.99","839.99","209.99","122.50","729.90","510.93","8790.00","6153.00","3899000.00","2729300.00","3299.99","2044.24","59990.00","41993.00","649.99","454.99","54900.00","38430.00","18900.00","13230.00","389900.00","272930.00","114900.00","80430.00","499900.00","349930.00","579.90","405.93","579.90","405.93" -Tier 70,"179.99","126.00","249.99","174.99","3499.00","2449.30","279.99","178.18","269.99","164.34","21800.00000","15260.00","1198.00","821.92","258.98","181.29","1448.00","1013.60","5390.00","3593.33","2699000.00","1889300.00","13900.00","8245.76","13990.00","8299.15","629.99","440.99","639.90","447.93","2799.99","1719.29","679.99","475.99","679.99","475.99","179.99","104.99","1549.00","867.44","1895.00","1061.20","180.00","116.99","1890.00","1058.40","209.99","125.64","209.99","124.57","209.99","123.52","209.99","123.52","209.99","122.49","209.99","122.49","399.99","233.33","209.99","122.49","209.99","122.49","209.99","121.48","5490.00","3176.03","209.99","121.48","209.99","121.48","209.99","121.48","209.99","121.48","209.99","120.49","209.99","120.49","209.99","118.54","209.99","119.51","849.99","483.73","209.99","119.51","209.99","118.54","899.99","529.41","64990.00","35821.26","197.99","138.60","6500.00","4550.00","223.19","126.00","1549.99","867.99","215.99","126.00","749.90","524.93","8990.00","6293.00","3999000.00","2799300.00","3399.99","2106.19","62990.00","44093.00","679.99","475.99","57900.00","40530.00","19900.00","13930.00","399900.00","279930.00","119900.00","83930.00","529900.00","370930.00","599.90","419.93","599.90","419.93" -Tier 71,"189.99","133.00","259.99","181.99","3699.00","2589.30","299.99","190.90","279.99","170.43","22800.00000","15960.00","1248.00","856.22","268.98","188.29","1488.00","1041.60","5690.00","3793.33","2799000.00","1959300.00","14900.00","8838.98","14490.00","8595.76","649.99","454.99","679.90","475.93","2899.99","1780.70","699.99","489.99","699.99","489.99","189.99","110.83","1599.00","895.44","1995.00","1117.20","190.00","123.49","1990.00","1114.40","219.99","131.62","219.99","130.50","219.99","129.41","219.99","129.41","219.99","128.33","219.99","128.33","409.99","239.16","219.99","128.33","219.99","128.33","219.99","127.27","5790.00","3349.59","219.99","127.27","219.99","127.27","219.99","127.27","219.99","127.27","219.99","126.22","219.99","126.22","219.99","124.19","219.99","125.20","899.99","512.19","219.99","125.20","219.99","124.19","949.99","558.82","69990.00","38577.17","208.99","146.30","6700.00","4690.00","235.59","133.00","1599.99","895.99","227.99","133.00","779.90","545.93","9490.00","6643.00","4299000.00","3009300.00","3499.99","2168.14","64990.00","45493.00","699.99","489.99","59900.00","41930.00","20900.00","14630.00","429900.00","300930.00","124900.00","87430.00","549900.00","384930.00","629.90","440.93","629.90","440.93" -Tier 72,"199.99","140.00","279.99","195.99","3799.00","2659.30","319.99","203.63","299.99","182.60","23800.00000","16660.00","1298.00","890.52","288.98","202.29","1588.00","1111.60","5990.00","3993.33","2999000.00","2099300.00","15500.00","9194.92","14990.00","8892.37","699.99","489.99","699.90","489.93","2999.99","1842.10","749.99","524.99","749.99","524.99","199.99","116.66","1699.00","951.44","2095.00","1173.20","200.00","129.99","2190.00","1226.40","229.99","137.60","229.99","136.43","229.99","135.29","229.99","135.29","229.99","134.16","229.99","134.16","429.99","250.83","229.99","134.16","229.99","134.16","229.99","133.05","5990.00","3465.29","229.99","133.05","229.99","133.05","229.99","133.05","229.99","133.05","229.99","131.96","229.99","131.96","229.99","129.83","229.99","130.89","949.99","540.64","229.99","130.89","229.99","129.83","999.99","588.23","72990.00","40231.00","219.99","154.00","6900.00","4830.00","247.99","140.00","1699.99","951.99","239.99","140.00","799.90","559.93","9990.00","6993.00","4499000.00","3149300.00","3799.99","2353.98","69990.00","48993.00","749.99","524.99","62900.00","44030.00","21900.00","15330.00","449900.00","314930.00","129900.00","90930.00","579900.00","405930.00","649.90","454.93","649.90","454.93" -Tier 73,"209.99","147.00","289.99","202.99","3999.00","2799.30","329.99","209.99","309.99","188.69","24800.00000","17360.00","1398.00","959.13","298.98","209.29","1648.00","1153.60","6290.00","4193.33","3099000.00","2169300.00","15900.00","9432.20","15990.00","9485.59","749.99","524.99","739.90","517.93","3199.99","1964.91","779.99","545.99","779.99","545.99","209.99","122.49","1799.00","1007.44","2195.00","1229.20","210.00","136.49","2290.00","1282.40","239.99","143.58","239.99","142.37","239.99","141.17","239.99","141.17","239.99","139.99","239.99","139.99","449.99","262.49","239.99","139.99","239.99","139.99","239.99","138.84","6290.00","3638.84","239.99","138.84","239.99","138.84","239.99","138.84","239.99","138.84","239.99","137.70","239.99","137.70","239.99","135.48","239.99","136.58","999.99","569.10","239.99","136.58","239.99","135.48","1049.99","617.64","74990.00","41333.07","230.99","161.70","7500.00","5250.00","260.39","147.00","1799.99","1007.99","251.99","147.00","849.90","594.93","10490.00","7343.00","4799000.00","3359300.00","3999.99","2477.87","72990.00","51093.00","779.99","545.99","64900.00","45430.00","22900.00","16030.00","459900.00","321930.00","134900.00","94430.00","599900.00","419930.00","679.90","475.93","679.90","475.93" -Tier 74,"219.99","154.00","299.99","209.99","4199.00","2939.30","349.99","222.72","329.99","200.86","26800.00000","18760.00","1448.00","993.43","318.98","223.29","1688.00","1181.60","6590.00","4393.33","3199000.00","2239300.00","16900.00","10025.42","16990.00","10078.81","799.99","559.99","779.90","545.93","3299.99","2026.31","799.99","559.99","799.99","559.99","219.99","128.33","1899.00","1063.44","2295.00","1285.20","220.00","142.99","2390.00","1338.40","249.99","149.57","249.99","148.30","249.99","147.05","249.99","147.05","249.99","145.83","249.99","145.83","479.99","279.99","249.99","145.83","249.99","145.83","249.99","144.62","6490.00","3754.55","249.99","144.62","249.99","144.62","249.99","144.62","249.99","144.62","249.99","143.44","249.99","143.44","249.99","141.12","249.99","142.27","1049.99","597.56","249.99","142.27","249.99","141.12","1099.99","647.05","79990.00","44089.00","241.99","169.40","7700.00","5390.00","272.79","154.00","1899.99","1063.99","263.99","154.00","899.90","629.93","10990.00","7693.00","4999000.00","3499300.00","4199.99","2601.76","74990.00","52493.00","799.99","559.99","67900.00","47530.00","23900.00","16730.00","479900.00","335930.00","139900.00","97930.00","629900.00","440930.00","699.90","489.93","699.90","489.93" -Tier 75,"229.99","161.00","319.99","223.99","4499.00","3149.30","359.99","229.08","339.99","206.95","27800.00000","19460.00","1498.00","1027.74","328.98","230.29","1788.00","1251.60","6890.00","4593.33","3399000.00","2379300.00","17900.00","10618.65","17490.00","10375.42","849.99","594.99","799.90","559.93","3499.99","2149.12","849.99","594.99","849.99","594.99","229.99","134.16","1949.00","1091.44","2395.00","1341.20","230.00","149.49","2490.00","1394.40","259.99","155.55","259.99","154.23","259.99","152.94","259.99","152.94","259.99","151.66","259.99","151.66","499.99","291.66","259.99","151.66","259.99","151.66","259.99","150.41","6790.00","3928.10","259.99","150.41","259.99","150.41","259.99","150.41","259.99","150.41","259.99","149.17","259.99","149.17","259.99","146.77","259.99","147.96","1099.99","626.01","259.99","147.96","259.99","146.77","1149.99","676.46","84990.00","46845.00","252.99","177.10","7900.00","5530.00","285.19","161.00","1949.99","1091.99","275.99","161.00","949.90","664.93","11490.00","8043.00","5299000.00","3709300.00","4299.99","2663.71","79990.00","55993.00","849.99","594.99","69900.00","48930.00","24900.00","17430.00","499900.00","349930.00","149900.00","104930.00","649900.00","454930.00","749.90","524.93","749.90","524.93" -Tier 76,"239.99","168.00","329.99","230.99","4799.00","3359.30","379.99","241.81","359.99","219.12","28800.00000","20160.00","1598.00","1096.34","338.98","237.29","1848.00","1293.60","7190.00","4793.33","3499000.00","2449300.00","18900.00","11211.87","17990.00","10672.03","899.99","629.99","859.90","601.93","3799.99","2333.33","879.99","615.99","879.99","615.99","239.99","139.99","1999.00","1119.44","2495.00","1397.20","240.00","155.99","2590.00","1450.40","269.99","161.53","269.99","160.16","269.99","158.82","269.99","158.82","269.99","157.49","269.99","157.49","529.99","309.16","269.99","157.49","269.99","157.49","269.99","156.19","6990.00","4043.80","269.99","156.19","269.99","156.19","269.99","156.19","269.99","156.19","269.99","154.91","269.99","154.91","269.99","152.41","269.99","153.65","1149.99","654.47","269.99","153.65","269.99","152.41","1199.99","705.88","87990.00","48498.42","263.99","184.80","8500.00","5950.00","297.59","168.00","1999.99","1119.99","287.99","168.00","999.90","699.93","11990.00","8393.00","5499000.00","3849300.00","4499.99","2787.60","84990.00","59493.00","879.99","615.99","74900.00","52430.00","25900.00","18130.00","529900.00","370930.00","159900.00","111930.00","699900.00","489930.00","799.90","559.93","799.90","559.93" -Tier 77,"249.99","175.00","349.99","244.99","4999.00","3499.30","399.99","254.54","369.99","225.21","29800.00000","20860.00","1648.00","1130.65","348.98","244.29","1888.00","1321.60","7490.00","4993.33","3599000.00","2519300.00","19900.00","11805.09","18990.00","11265.25","949.99","664.99","899.90","629.93","3999.99","2456.13","899.99","629.99","899.99","629.99","249.99","145.83","2099.00","1175.44","2595.00","1453.20","250.00","162.49","2690.00","1506.40","279.99","167.52","279.99","166.10","279.99","164.70","279.99","164.70","279.99","163.33","279.99","163.33","549.99","320.83","279.99","163.33","279.99","163.33","279.99","161.98","7490.00","4333.06","279.99","161.98","279.99","161.98","279.99","161.98","279.99","161.98","279.99","160.65","279.99","160.65","279.99","158.06","279.99","159.34","1199.99","682.92","279.99","159.34","279.99","158.06","1249.99","735.29","89990.00","49601.00","274.99","192.50","8700.00","6090.00","309.99","175.00","2299.99","1287.99","299.99","175.00","1049.90","734.93","12490.00","8743.00","5799000.00","4059300.00","4799.99","2973.45","89990.00","62993.00","899.99","629.99","79900.00","55930.00","26900.00","18830.00","549900.00","384930.00","169900.00","118930.00","749900.00","524930.00","849.90","594.93","849.90","594.93" -Tier 78,"299.99","210.00","399.99","279.99","5999.00","4199.30","499.99","318.18","449.99","273.91","34800.00000","24360.00","1998.00","1370.77","448.98","314.29","2288.00","1601.60","8990.00","5993.33","4399000.00","3079300.00","24900.00","14771.19","22990.00","13638.14","999.99","699.99","999.90","699.93","4999.99","3070.17","1099.99","769.99","1099.99","769.99","299.99","174.99","2499.00","1399.44","3195.00","1789.20","300.00","194.99","3290.00","1842.40","329.99","197.43","329.99","195.76","329.99","194.11","329.99","194.11","329.99","192.49","329.99","192.49","649.99","379.16","329.99","192.49","329.99","192.49","329.99","190.90","8990.00","5200.83","329.99","190.90","329.99","190.90","329.99","190.90","329.99","190.90","329.99","189.34","329.99","189.34","329.99","186.28","329.99","187.80","1399.99","796.74","329.99","187.80","329.99","186.28","1499.99","882.35","99990.00","55113.00","329.99","231.00","10500.00","7350.00","371.99","210.00","2499.99","1399.99","359.99","210.00","1299.90","909.93","14990.00","10493.00","6999000.00","4899300.00","5499.99","3407.07","99990.00","69993.00","1099.99","769.99","99900.00","69930.00","29900.00","20930.00","649900.00","454930.00","199900.00","139930.00","899900.00","629930.00","999.90","699.93","999.90","699.93" -Tier 79,"349.99","245.00","499.99","349.99","6999.00","4899.30","549.99","349.99","499.99","304.34","42800.00000","29960.00","2298.00","1576.60","488.98","342.29","2688.00","1881.60","9990.00","6660.00","4999000.00","3499300.00","27900.00","16550.85","26990.00","16011.02","1199.99","839.99","1199.90","839.93","5499.99","3377.19","1299.99","909.99","1299.99","909.99","349.99","204.16","2999.00","1679.44","3695.00","2069.20","350.00","227.48","3790.00","2122.40","399.99","239.31","399.99","237.28","399.99","235.29","399.99","235.29","399.99","233.33","399.99","233.33","749.99","437.49","399.99","233.33","399.99","233.33","399.99","231.40","9990.00","5779.34","399.99","231.40","399.99","231.40","399.99","231.40","399.99","231.40","399.99","229.50","399.99","229.50","399.99","225.80","399.99","227.64","1699.99","967.47","399.99","227.64","399.99","225.80","1799.99","1058.82","129990.00","71648.03","384.99","269.50","12500.00","8750.00","433.99","245.00","2999.99","1679.99","419.99","245.00","1499.90","1049.93","17490.00","12243.00","7999000.00","5599300.00","6499.99","4026.54","119990.00","83993.00","1299.99","909.99","109900.00","76930.00","34900.00","24430.00","749900.00","524930.00","229900.00","160930.00","999900.00","699930.00","1099.90","769.93","1099.90","769.93" -Tier 80,"399.99","280.00","549.99","384.99","7999.00","5599.30","599.99","381.81","599.99","365.21","48800.00000","34160.00","2598.00","1782.42","588.98","412.29","3088.00","2161.60","11900.00","7933.33","5899000.00","4129300.00","29900.00","17737.29","29990.00","17790.68","1399.99","979.99","1399.90","979.93","5999.99","3684.20","1499.99","1049.99","1499.99","1049.99","399.99","233.33","3499.00","1959.44","4295.00","2405.20","400.00","259.98","4290.00","2402.40","449.99","269.22","449.99","266.94","449.99","264.70","449.99","264.70","449.99","262.49","449.99","262.49","899.99","524.99","449.99","262.49","449.99","262.49","449.99","260.32","11990.00","6936.36","449.99","260.32","449.99","260.32","449.99","260.32","449.99","260.32","449.99","258.19","449.99","258.19","449.99","254.03","449.99","256.09","1899.99","1081.30","449.99","256.09","449.99","254.03","1999.99","1176.46","149990.00","82672.00","439.99","308.00","13900.00","9730.00","495.99","280.00","3499.99","1959.99","479.99","280.00","1699.90","1189.93","19990.00","13993.00","8999000.00","6299300.00","7499.99","4646.01","139990.00","97993.00","1499.99","1049.99","129900.00","90930.00","39900.00","27930.00","899900.00","629930.00","269900.00","188930.00","1099900.00","769930.00","1299.90","909.93","1299.90","909.93" -Tier 81,"449.99","315.00","599.99","419.99","8999.00","6299.30","699.99","445.45","649.99","395.65","54800.00000","38360.00","2998.00","2056.85","648.98","454.29","3488.00","2441.60","12900.00","8600.00","6599000.00","4619300.00","34900.00","20703.39","34990.00","20756.78","1599.99","1119.99","1599.90","1119.93","6999.99","4298.24","1599.99","1119.99","1599.99","1119.99","449.99","262.49","3999.00","2239.44","4795.00","2685.20","450.00","292.48","4790.00","2682.40","499.99","299.14","499.99","296.60","499.99","294.11","499.99","294.11","499.99","291.66","499.99","291.66","999.99","583.33","499.99","291.66","499.99","291.66","499.99","289.25","13990.00","8093.39","499.99","289.25","499.99","289.25","499.99","289.25","499.99","289.25","499.99","286.88","499.99","286.88","499.99","282.25","499.99","284.55","1999.99","1138.21","499.99","284.55","499.99","282.25","2299.99","1352.94","169990.00","93695.28","494.99","346.50","15900.00","11130.00","557.99","315.00","3999.99","2239.99","539.99","315.00","1799.90","1259.93","22490.00","15743.00","9999000.00","6999300.00","8499.99","5265.48","149990.00","104993.00","1599.99","1119.99","139900.00","97930.00","44900.00","31430.00","999900.00","699930.00","299900.00","209930.00","1299900.00","909930.00","1499.90","1049.93","1499.90","1049.93" -Tier 82,"499.99","350.00","699.99","489.99","9999.00","6999.30","799.99","509.08","749.99","456.52","58800.00000","41160.00","3298.00","2262.67","688.98","482.29","3888.00","2721.60","14900.00","9933.33","7399000.00","5179300.00","39900.00","23669.49","37990.00","22536.44","1799.99","1259.99","1799.90","1259.93","7999.99","4912.27","1799.99","1259.99","1799.99","1259.99","499.99","291.66","4499.00","2519.44","5495.00","3077.20","500.00","324.98","5490.00","3074.40","599.99","358.97","599.99","355.93","599.99","352.94","599.99","352.94","599.99","349.99","599.99","349.99","1099.99","641.66","599.99","349.99","599.99","349.99","599.99","347.10","14990.00","8671.90","599.99","347.10","599.99","347.10","599.99","347.10","599.99","347.10","599.99","344.26","599.99","344.26","599.99","338.70","599.99","341.46","2299.99","1308.94","599.99","341.46","599.99","338.70","2499.99","1470.58","179990.00","99207.09","549.99","385.00","17900.00","12530.00","619.99","350.00","4499.99","2519.99","599.99","350.00","1999.90","1399.93","24990.00","17493.00","10999000.00","7699300.00","9499.99","5884.95","169990.00","118993.00","1799.99","1259.99","149900.00","104930.00","49900.00","34930.00","1099900.00","769930.00","349900.00","244930.00","1499900.00","1049930.00","1699.90","1189.93","1699.90","1189.93" -Tier 83,"599.99","420.00","849.99","594.99","10999.00","7699.30","899.99","572.72","899.99","547.82","74800.00000","52360.00","3998.00","2742.92","888.98","622.29","4488.00","3141.60","17900.00","11933.33","8999000.00","6299300.00","44900.00","26635.60","44990.00","26688.98","2199.99","1539.99","1999.90","1399.93","9999.99","6140.34","2199.99","1539.99","2199.99","1539.99","599.99","349.99","4999.00","2799.44","6495.00","3637.20","600.00","389.97","6490.00","3634.40","699.99","418.80","699.99","415.25","699.99","411.76","699.99","411.76","699.99","408.33","699.99","408.33","1299.99","758.33","699.99","408.33","699.99","408.33","699.99","404.95","17990.00","10407.44","699.99","404.95","699.99","404.95","699.99","404.95","699.99","404.95","699.99","401.63","699.99","401.63","699.99","395.16","699.99","398.37","2799.99","1593.49","699.99","398.37","699.99","395.16","2999.99","1764.70","229990.00","126766.14","659.99","462.00","20900.00","14630.00","743.99","420.00","4999.99","2799.99","719.99","420.00","2499.90","1749.93","29990.00","20993.00","12999000.00","9099300.00","11999.99","7433.62","199990.00","139993.00","2199.99","1539.99","199900.00","139930.00","59900.00","41930.00","1299000.00","909300.00","399900.00","279930.00","1799900.00","1259930.00","1999.90","1399.93","1999.90","1399.93" -Tier 84,"699.99","490.00","999.99","699.99","12999.00","9099.30","1099.99","699.99","999.99","608.69","84800.00000","59360.00","4498.00","3085.96","988.98","692.29","4988.00","3491.60","20900.00","13933.33","9999000.00","6999300.00","54900.00","32567.80","54990.00","32621.19","2499.99","1749.99","2399.90","1679.93","10999.99","6754.38","2499.99","1749.99","2499.99","1749.99","699.99","408.33","5999.00","3359.44","7495.00","4197.20","700.00","454.97","7490.00","4194.40","799.99","478.63","799.99","474.57","799.99","470.58","799.99","470.58","799.99","466.66","799.99","466.66","1499.99","874.99","799.99","466.66","799.99","466.66","799.99","462.80","19990.00","11564.46","799.99","462.80","799.99","462.80","799.99","462.80","799.99","462.80","799.99","459.01","799.99","459.01","799.99","451.61","799.99","455.28","3299.99","1878.04","799.99","455.28","799.99","451.61","3499.99","2058.82","249990.00","137790.00","769.99","539.00","24900.00","17430.00","867.99","490.00","5999.99","3359.99","839.99","490.00","2999.90","2099.93","34990.00","24493.00","14999000.00","10499300.00","12999.99","8053.09","249990.00","174993.00","2499.99","1749.99","229900.00","160930.00","69900.00","48930.00","1499000.00","1049300.00","449900.00","314930.00","1999900.00","1399930.00","2299.90","1609.93","2299.90","1609.93" -Tier 85,"799.99","560.00","1099.99","769.99","14999.00","10499.30","1249.99","795.45","1199.99","730.43","98800.00000","69160.00","4998.00","3428.99","1088.98","762.29","5988.00","4191.60","23900.00","15933.33","11999000.00","8399300.00","59900.00","35533.90","59990.00","35587.29","2899.99","2029.99","2999.90","2099.93","12999.99","7982.45","2999.99","2099.99","2999.99","2099.99","799.99","466.66","6999.00","3919.44","8495.00","4757.20","800.00","519.96","8490.00","4754.40","899.99","538.46","899.99","533.89","899.99","529.41","899.99","529.41","899.99","524.99","899.99","524.99","1799.99","1049.99","899.99","524.99","899.99","524.99","899.99","520.66","24990.00","14457.02","899.99","520.66","899.99","520.66","899.99","520.66","899.99","520.66","899.99","516.39","899.99","516.39","899.99","508.06","899.99","512.19","3799.99","2162.60","899.99","512.19","899.99","508.06","3999.99","2352.94","299990.00","165349.00","879.99","616.00","27900.00","19530.00","991.99","560.00","6999.99","3919.99","959.99","560.00","3499.90","2449.93","39990.00","27993.00","17999000.00","12599300.00","14999.99","9292.03","279990.00","195993.00","2999.99","2099.99","249900.00","174930.00","79900.00","55930.00","1799000.00","1259300.00","549900.00","384930.00","2299900.00","1609930.00","2499.90","1749.93","2499.90","1749.93" -Tier 86,"899.99","630.00","1199.99","839.99","16999.00","11899.30","1399.99","890.90","1299.99","791.30","108800.00000","76160.00","5898.00","4046.46","1288.98","902.29","6988.00","4891.60","26900.00","17933.33","12999000.00","9099300.00","69900.00","41466.11","69990.00","41519.49","3199.99","2239.99","3199.90","2239.93","13999.99","8596.49","3299.99","2309.99","3299.99","2309.99","899.99","524.99","7999.00","4479.44","9495.00","5317.20","900.00","584.96","9490.00","5314.40","999.99","598.28","999.99","593.21","999.99","588.23","999.99","588.23","999.99","583.33","999.99","583.33","1999.99","1166.66","999.99","583.33","999.99","583.33","999.99","578.51","26990.00","15614.05","999.99","578.51","999.99","578.51","999.99","578.51","999.99","578.51","999.99","573.76","999.99","573.76","999.99","564.51","999.99","569.10","4299.99","2447.15","999.99","569.10","999.99","564.51","4499.99","2647.05","329990.00","181884.25","989.99","693.00","31900.00","22330.00","1115.99","630.00","7999.99","4479.99","1079.99","630.00","3799.90","2659.93","44990.00","31493.00","19999000.00","13999300.00","16999.99","10530.97","299990.00","209993.00","3299.99","2309.99","279900.00","195930.00","89900.00","62930.00","1999000.00","1399300.00","599900.00","419930.00","2499900.00","1749930.00","2999.90","2099.93","2999.90","2099.93" -Tier 87,"999.99","700.00","1399.99","979.99","18999.00","13299.30","1599.99","1018.18","1499.99","913.04","118800.00000","83160.00","6498.00","4458.10","1488.98","1042.29","7888.00","5521.60","29900.00","19933.33","14999000.00","10499300.00","79900.00","47398.31","74990.00","44485.59","3499.99","2449.99","3599.90","2519.93","14999.99","9210.52","3699.99","2589.99","3699.99","2589.99","999.99","583.33","8999.00","5039.44","10995.00","6157.20","1000.00","649.95","10990.00","6154.40","1099.99","658.11","1099.99","652.54","1099.99","647.05","1099.99","647.05","1099.99","641.66","1099.99","641.66","2199.99","1283.33","1099.99","641.66","1099.99","641.66","1099.99","636.36","29990.00","17349.59","1099.99","636.36","1099.99","636.36","1099.99","636.36","1099.99","636.36","1099.99","631.14","1099.99","631.14","1099.99","620.96","1099.99","626.01","4799.99","2731.70","1099.99","626.01","1099.99","620.96","4999.99","2941.17","349990.00","192908.00","1099.99","770.00","34900.00","24430.00","1239.99","700.00","8999.99","5039.99","1199.99","700.00","3999.90","2799.93","49990.00","34993.00","21999000.00","15399300.00","18999.99","11769.91","349990.00","244993.00","3699.99","2589.99","299900.00","209930.00","99900.00","69930.00","2199000.00","1539300.00","649900.00","454930.00","2999900.00","2099930.00","3299.90","2309.93","3299.90","2309.93" -Alternate Tier A,"0.99","0.70","0.99","0.69","5.00","3.50","0.99","0.63","0.99","0.60","120.00000","84.00","1.00","0.69","1.48","1.04","8.00","5.60","30.00","20.00","3000.00","2100.00","10.00","5.93","15.00","8.90","0.59","0.41","1.90","1.33","3.99","2.45","3.69","2.58","3.69","2.58","0.49","0.29","5.00","2.80","10.00","5.60","1.00","0.65","11.00","6.16","0.49","0.29","0.49","0.29","0.49","0.29","0.49","0.29","0.49","0.29","0.49","0.29","0.49","0.29","0.49","0.29","0.49","0.29","0.49","0.28","9.00","5.21","0.49","0.28","0.49","0.28","0.49","0.28","0.49","0.28","0.49","0.28","0.49","0.28","0.49","0.28","0.49","0.28","1.99","1.13","0.49","0.28","0.49","0.28","1.99","1.17","99.00","55.00","1.09","0.77","9.00","6.30","1.23","0.70","2.99","1.67","1.19","0.70","0.90","0.63","19.00","13.30","5000.00","3500.00","4.99","3.09","99.00","69.30","3.69","2.58","100.00","70.00","30.00","21.00","500.00","350.00","290.00","203.00","900.00","630.00","0.90","0.63","0.90","0.63" -Alternate Tier B,"0.99","0.70","0.99","0.69","9.00","6.30","0.99","0.63","0.99","0.60","120.00000","84.00","3.00","2.06","1.48","1.04","8.00","5.60","30.00","20.00","5000.00","3500.00","30.00","17.80","29.00","17.20","1.29","0.90","1.90","1.33","6.99","4.29","3.69","2.58","3.69","2.58","0.79","0.46","5.00","2.80","10.00","5.60","1.00","0.65","11.00","6.16","0.99","0.59","0.99","0.59","0.99","0.58","0.99","0.58","0.99","0.58","0.99","0.58","0.99","0.58","0.99","0.58","0.99","0.58","0.99","0.57","19.00","10.99","0.99","0.57","0.99","0.57","0.99","0.57","0.99","0.57","0.99","0.57","0.99","0.57","0.99","0.56","0.99","0.56","2.99","1.70","0.99","0.56","0.99","0.56","2.99","1.76","199.00","110.00","1.09","0.77","19.00","13.30","1.23","0.70","4.99","2.79","1.19","0.70","1.90","1.33","29.00","20.30","9000.00","6300.00","9.99","6.19","199.00","139.30","3.69","2.58","200.00","140.00","50.00","35.00","1200.00","840.00","490.00","343.00","1900.00","1330.00","1.90","1.33","1.90","1.33" -Alternate Tier 1,"0.99","0.70","1.49","1.04","19.00","13.30","1.99","1.27","1.49","0.91","150.00000","105.00","8.00","5.49","1.48","1.04","8.00","5.60","30.00","20.00","15000.00","10500.00","80.00","47.46","75.00","44.49","3.49","2.44","3.50","2.45","19.99","12.27","3.99","2.79","3.99","2.79","0.99","0.58","9.00","5.04","10.00","5.60","1.00","0.65","11.00","6.16","1.99","1.19","1.99","1.18","1.99","1.17","1.99","1.17","1.99","1.16","1.99","1.16","1.99","1.16","1.99","1.16","1.99","1.16","1.99","1.15","49.00","28.35","1.99","1.15","1.99","1.15","1.99","1.15","1.99","1.15","1.99","1.14","1.99","1.14","1.99","1.12","1.99","1.13","4.99","2.84","1.99","1.13","1.99","1.12","4.99","2.94","349.00","192.36","1.09","0.77","35.00","24.50","1.23","0.70","8.99","5.03","1.19","0.70","4.90","3.43","49.00","34.30","25000.00","17500.00","18.99","11.76","349.00","244.30","3.99","2.79","300.00","210.00","100.00","70.00","2200.00","1540.00","690.00","483.00","2900.00","2030.00","3.50","2.45","3.50","2.45" -Alternate Tier 2,"1.99","1.40","2.99","2.09","39.00","27.30","3.99","2.54","2.99","1.82","250.00000","175.00","12.00","8.23","2.98","2.09","18.00","12.60","60.00","40.00","29000.00","20300.00","160.00","94.92","169.00","100.25","6.99","4.89","6.90","4.83","39.99","24.56","7.99","5.59","7.99","5.59","1.99","1.16","19.00","10.64","20.00","11.20","2.00","1.30","22.00","12.32","2.99","1.79","2.99","1.77","2.99","1.76","2.99","1.76","2.99","1.74","2.99","1.74","4.49","2.62","2.99","1.74","2.99","1.74","2.99","1.73","59.00","34.13","2.99","1.73","2.99","1.73","2.99","1.73","2.99","1.73","2.99","1.72","2.99","1.72","2.99","1.69","2.99","1.70","8.99","5.12","2.99","1.70","2.99","1.69","9.99","5.88","699.00","385.28","2.19","1.54","69.00","48.30","2.47","1.40","16.99","9.51","2.39","1.40","9.90","6.93","99.00","69.30","45000.00","31500.00","37.99","23.53","699.00","489.30","7.99","5.59","600.00","420.00","200.00","140.00","4500.00","3150.00","1300.00","910.00","5900.00","4130.00","6.90","4.83","6.90","4.83" -Alternate Tier 3,"2.99","2.10","3.99","2.79","59.00","41.30","4.99","3.18","4.49","2.73","400.00000","280.00","18.00","12.35","4.48","3.14","23.00","16.10","90.00","60.00","45000.00","31500.00","250.00","148.31","249.00","147.71","9.99","6.99","10.90","7.63","49.99","30.70","10.99","7.69","10.99","7.69","2.99","1.74","29.00","16.24","35.00","19.60","3.00","1.95","33.00","18.48","3.99","2.39","3.99","2.37","3.99","2.35","3.99","2.35","3.99","2.33","3.99","2.33","6.49","3.79","3.99","2.33","3.99","2.33","3.99","2.31","89.00","51.49","3.99","2.31","3.99","2.31","3.99","2.31","3.99","2.31","3.99","2.29","3.99","2.29","3.99","2.25","3.99","2.27","13.99","7.96","3.99","2.27","3.99","2.25","14.99","8.82","1090.00","601.00","3.29","2.31","129.00","90.30","3.71","2.10","24.99","13.99","3.59","2.10","12.90","9.03","149.00","104.30","69000.00","48300.00","54.99","34.06","999.00","699.30","10.99","7.69","900.00","630.00","300.00","210.00","6500.00","4550.00","1900.00","1330.00","8900.00","6230.00","9.90","6.93","9.90","6.93" -Alternate Tier 4,"3.99","2.80","5.49","3.84","79.00","55.30","6.99","4.45","5.99","3.65","500.00000","350.00","28.00","19.21","5.98","4.19","28.00","19.60","120.00","80.00","59000.00","41300.00","300.00","177.97","299.00","177.37","13.99","9.79","13.90","9.73","69.99","42.98","14.99","10.49","14.99","10.49","3.99","2.33","39.00","21.84","45.00","25.20","4.00","2.60","44.00","24.64","4.99","2.99","4.99","2.96","4.99","2.94","4.99","2.94","4.99","2.91","4.99","2.91","8.49","4.95","4.99","2.91","4.99","2.91","4.99","2.89","119.00","68.84","4.99","2.89","4.99","2.89","4.99","2.89","4.99","2.89","4.99","2.86","4.99","2.86","4.99","2.82","4.99","2.84","19.99","11.38","4.99","2.84","4.99","2.82","19.99","11.76","1490.00","821.26","4.39","3.08","149.00","104.30","4.95","2.80","34.99","19.59","4.79","2.80","16.90","11.83","199.00","139.30","99000.00","69300.00","74.99","46.45","1390.00","973.00","14.99","10.49","1200.00","840.00","400.00","280.00","8900.00","6230.00","2500.00","1750.00","11900.00","8330.00","12.90","9.03","12.90","9.03" -Alternate Tier 5,"4.99","3.50","6.99","4.89","99.00","69.30","8.99","5.72","7.49","4.56","600.00000","420.00","30.00","20.58","6.98","4.89","38.00","26.60","150.00","100.00","75000.00","52500.00","400.00","237.29","399.00","236.69","17.99","12.59","17.90","12.53","79.99","49.12","19.99","13.99","19.99","13.99","4.99","2.91","45.00","25.20","55.00","30.80","5.00","3.25","59.00","33.04","5.99","3.58","5.99","3.55","5.99","3.52","5.99","3.52","5.99","3.49","5.99","3.49","10.99","6.41","5.99","3.49","5.99","3.49","5.99","3.47","149.00","86.20","5.99","3.47","5.99","3.47","5.99","3.47","5.99","3.47","5.99","3.44","5.99","3.44","5.99","3.38","5.99","3.41","23.99","13.65","5.99","3.41","5.99","3.38","24.99","14.70","1790.00","987.00","5.49","3.85","199.00","139.30","6.19","3.50","42.99","24.07","5.99","3.50","19.90","13.93","249.00","174.30","109000.00","76300.00","94.99","58.84","1690.00","1183.00","19.99","13.99","1500.00","1050.00","500.00","350.00","10900.00","7630.00","3500.00","2450.00","14900.00","10430.00","16.90","11.83","16.90","11.83" diff --git a/PriceKit/Resources/pricing_matrix_20200605-053929.csv b/PriceKit/Resources/pricing_matrix_20200605-053929.csv new file mode 100644 index 0000000..121199c --- /dev/null +++ b/PriceKit/Resources/pricing_matrix_20200605-053929.csv @@ -0,0 +1,97 @@ +,"Hong Kong (HKD)",,"Portugal (EUR)",,"Honduras (USD)",,"Paraguay (USD)",,"Croatia (HRK)",,"Hungary (HUF)",,"Qatar (QAR)",,"Indonesia (IDR)",,"Ireland (EUR)",,"Israel (ILS)",,"United Arab Emirates (AED)",,"Afghanistan (USD)",,"India (INR)",,"South Africa (ZAR)",,"Iraq (USD)",,"Iceland (USD)",,"Albania (USD)",,"Italy (EUR)",,"Armenia (USD)",,"Argentina (USD)",,"Zambia (USD)",,"Austria (EUR)",,"Australia (AUD)",,"Romania (RON)",,"Bosnia and Herzegovina (EUR)",,"Barbados (USD)",,"Serbia (EUR)",,"Russia (RUB)",,"Belgium (EUR)",,"Bulgaria (BGN)",,"Rwanda (USD)",,"Japan (JPY)",,"Bahrain (USD)",,"Bolivia (USD)",,"Saudi Arabia (SAR)",,"Brazil (BRL)",,"Sweden (SEK)",,"Singapore (SGD)",,"Slovenia (EUR)",,"Belarus (USD)",,"Slovakia (EUR)",,"Canada (CAD)",,"Congo, Democratic Republic of (USD)",,"El Salvador (USD)",,"Switzerland (CHF)",,"Cote D'Ivoire (USD)",,"South Korea (KRW)",,"Chile (CLP)",,"Cameroon (USD)",,"China (CNY)",,"Colombia (COP)",,"Costa Rica (USD)",,"Kazakhstan (KZT)",,"Thailand (THB)",,"Cyprus (EUR)",,"Czech Republic (CZK)",,"Tonga (USD)",,"Turkey (TRY)",,"Germany (EUR)",,"Taiwan (TWD)",,"Tanzania (TZS)",,"Denmark (DKK)",,"Lithuania (EUR)",,"Luxembourg (EUR)",,"Latvia (EUR)",,"Dominican Republic (USD)",,"Ukraine (USD)",,"Libya (USD)",,"Morocco (USD)",,"Moldova (USD)",,"Montenegro (EUR)",,"Ecuador (USD)",,"United States (USD)",,"Myanmar (USD)",,"Estonia (EUR)",,"Egypt (EGP)",,"Uruguay (USD)",,"Uzbekistan (USD)",,"Malta (EUR)",,"Maldives (USD)",,"Mexico (MXN)",,"Malaysia (MYR)",,"Spain (EUR)",,"Vietnam (VND)",,"Nigeria (NGN)",,"Nicaragua (USD)",,"Netherlands (EUR)",,"Vanuatu (USD)",,"Norway (NOK)",,"Finland (EUR)",,"Nauru (USD)",,"New Zealand (NZD)",,"France (EUR)",,"Gabon (USD)",,"United Kingdom (GBP)",,"Georgia (USD)",,"Greece (EUR)",,"Guatemala (USD)",,"Panama (USD)",,"Kosovo (EUR)",,"Peru (PEN)",,"Philippines (PHP)",,"Pakistan (PKR)",,"Poland (PLN)", +,"Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds","Price","Proceeds" +Free,"0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0","0","0.00","0.00","0","0","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0","0","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0","0","0","0","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0","0","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0","0","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00" +Tier 1,"8.00","5.60","1.09","0.62","0.99","0.70","0.99","0.70","8.99","5.03","349","192","3.69","2.58","15000","10500","1.09","0.62","3.50","2.45","3.69","2.46","0.99","0.70","79.00","46.86","14.99","9.12","0.99","0.70","1.23","0.70","1.19","0.70","1.09","0.63","1.19","0.69","0.99","0.70","0.99","0.70","1.09","0.64","1.49","0.95","4.99","2.94","1.09","0.65","1.19","0.71","1.09","0.64","75.00","52.50","1.09","0.63","1.99","1.16","0.99","0.70","120","84","0.99","0.66","0.99","0.70","3.69","2.46","3.90","2.73","12.00","6.72","1.48","0.97","1.09","0.63","1.19","0.69","1.09","0.64","1.39","0.97","0.99","0.70","0.99","0.70","1.00","0.65","0.99","0.70","1200","764","690","483","0.99","0.70","6.00","4.12","3900.00","2294.12","0.99","0.70","399.00","279.30","29.00","20.30","1.09","0.64","25.00","14.46","0.99","0.70","6.99","4.15","1.09","0.64","33","21","2200.00","1540.00","9.00","5.04","1.09","0.63","1.09","0.65","1.09","0.63","0.99","0.70","0.99","0.70","0.99","0.70","0.99","0.70","1.19","0.69","0.89","0.62","0.99","0.70","0.99","0.70","0.99","0.70","1.09","0.64","16.99","11.89","0.99","0.67","1.19","0.72","1.09","0.65","0.99","0.70","19.00","13.30","3.90","2.58","1.09","0.63","22000","15400","350.00","245.00","0.99","0.70","1.09","0.63","0.99","0.70","11.00","6.16","1.09","0.62","0.99","0.70","1.69","1.03","1.09","0.64","0.99","0.70","0.99","0.58","0.99","0.70","1.09","0.62","0.99","0.70","0.99","0.70","1.09","0.65","3.50","2.45","49.00","34.30","150.00","105.00","4.99","2.84" +Tier 2,"15.00","10.50","2.29","1.30","1.99","1.40","1.99","1.40","16.99","9.51","699","385","7.29","5.10","29000","20300","2.29","1.30","6.90","4.83","7.29","4.86","1.99","1.40","159.00","94.32","29.99","18.25","1.99","1.40","2.47","1.40","2.39","1.40","2.29","1.31","2.49","1.45","1.99","1.40","1.99","1.40","2.29","1.34","2.99","1.90","9.99","5.88","2.29","1.37","2.49","1.48","2.29","1.34","149.00","104.30","2.29","1.32","4.49","2.62","1.99","1.40","250","175","1.99","1.33","1.99","1.40","7.29","4.86","7.90","5.53","25.00","14.00","2.98","1.95","2.29","1.31","2.49","1.45","2.29","1.34","2.79","1.95","1.99","1.40","1.99","1.40","2.00","1.30","1.99","1.40","2500","1591","1300","910","1.99","1.40","12.00","8.23","7900.00","4647.06","1.99","1.40","799.00","559.30","59.00","41.30","2.29","1.35","49.00","28.35","1.99","1.40","12.99","7.71","2.29","1.35","70","45","4500.00","3150.00","17.00","9.52","2.29","1.32","2.29","1.37","2.29","1.32","1.99","1.40","1.99","1.40","1.99","1.40","1.99","1.40","2.49","1.45","1.79","1.25","1.99","1.40","1.99","1.40","1.99","1.40","2.29","1.34","32.99","23.09","1.99","1.35","2.49","1.52","2.29","1.36","1.99","1.40","39.00","27.30","7.90","5.22","2.29","1.32","45000","31500","700.00","490.00","1.99","1.40","2.29","1.32","1.99","1.40","22.00","12.32","2.29","1.29","1.99","1.40","3.49","2.12","2.29","1.34","1.99","1.40","1.99","1.16","1.99","1.40","2.29","1.29","1.99","1.40","1.99","1.40","2.29","1.36","6.90","4.83","99.00","69.30","300.00","210.00","8.99","5.12" +Tier 3,"23.00","16.10","3.49","1.99","2.99","2.10","2.99","2.10","24.99","13.99","1090","601","10.99","7.69","45000","31500","3.49","1.99","10.90","7.63","10.99","7.33","2.99","2.10","249.00","147.71","49.99","30.43","2.99","2.10","3.71","2.10","3.59","2.10","3.49","2.00","3.49","2.04","2.99","2.10","2.99","2.10","3.49","2.04","4.49","2.86","14.99","8.82","3.49","2.09","3.49","2.08","3.49","2.04","229.00","160.30","3.49","2.02","6.49","3.79","2.99","2.10","370","259","2.99","1.99","2.99","2.10","10.99","7.33","10.90","7.63","35.00","19.60","4.48","2.93","3.49","2.00","3.49","2.04","3.49","2.04","3.99","2.79","2.99","2.10","2.99","2.10","3.00","1.95","2.99","2.10","3900","2482","1900","1330","2.99","2.10","18.00","12.35","10900.00","6411.76","2.99","2.10","1190.00","833.00","89.00","62.30","3.49","2.05","79.00","45.70","2.99","2.10","19.99","11.86","3.49","2.05","100","65","6500.00","4550.00","25.00","14.00","3.49","2.02","3.49","2.09","3.49","2.02","2.99","2.10","2.99","2.10","2.99","2.10","2.99","2.10","3.49","2.04","2.79","1.95","2.99","2.10","2.99","2.10","2.99","2.10","3.49","2.04","49.99","34.99","2.99","2.03","3.49","2.12","3.49","2.07","2.99","2.10","59.00","41.30","12.90","8.52","3.49","2.02","69000","48300","1100.00","770.00","2.99","2.10","3.49","2.02","2.99","2.10","33.00","18.48","3.49","1.97","2.99","2.10","4.99","3.04","3.49","2.04","2.99","2.10","2.99","1.74","2.99","2.10","3.49","1.97","2.99","2.10","2.99","2.10","3.49","2.07","9.90","6.93","149.00","104.30","450.00","315.00","13.99","7.96" +Tier 4,"28.00","19.60","4.49","2.56","3.99","2.80","3.99","2.80","34.99","19.59","1490","821","14.99","10.49","59000","41300","4.49","2.56","13.90","9.73","14.99","9.99","3.99","2.80","299.00","177.37","59.99","36.52","3.99","2.80","4.95","2.80","4.79","2.80","4.49","2.58","4.99","2.91","3.99","2.80","3.99","2.80","4.49","2.62","5.99","3.81","19.99","11.76","4.49","2.69","4.99","2.97","4.49","2.62","299.00","209.30","4.49","2.60","8.49","4.95","3.99","2.80","490","343","3.99","2.66","3.99","2.80","14.99","9.99","14.90","10.43","50.00","28.00","5.98","3.91","4.49","2.58","4.99","2.91","4.49","2.62","5.49","3.84","3.99","2.80","3.99","2.80","4.00","2.60","3.99","2.80","4900","3118","2500","1750","3.99","2.80","25.00","17.15","14900.00","8764.71","3.99","2.80","1590.00","1113.00","119.00","83.30","4.49","2.64","99.00","57.27","3.99","2.80","26.99","16.01","4.49","2.64","130","84","8900.00","6230.00","35.00","19.60","4.49","2.60","4.49","2.69","4.49","2.60","3.99","2.80","3.99","2.80","3.99","2.80","3.99","2.80","4.99","2.91","3.49","2.44","3.99","2.80","3.99","2.80","3.99","2.80","4.49","2.62","64.99","45.49","3.99","2.70","4.99","3.04","4.49","2.66","3.99","2.80","79.00","55.30","16.90","11.16","4.49","2.60","89000","62300","1400.00","980.00","3.99","2.80","4.49","2.60","3.99","2.80","44.00","24.64","4.49","2.53","3.99","2.80","6.99","4.25","4.49","2.62","3.99","2.80","3.99","2.33","3.99","2.80","4.49","2.53","3.99","2.80","3.99","2.80","4.49","2.66","12.90","9.03","199.00","139.30","600.00","420.00","18.99","10.81" +Tier 5,"38.00","26.60","5.49","3.12","4.99","3.50","4.99","3.50","42.99","24.07","1790","987","17.99","12.59","75000","52500","5.49","3.12","17.90","12.53","17.99","11.99","4.99","3.50","399.00","236.69","79.99","48.69","4.99","3.50","6.19","3.50","5.99","3.50","5.49","3.15","5.99","3.49","4.99","3.50","4.99","3.50","5.49","3.20","7.99","5.08","24.99","14.70","5.49","3.28","5.99","3.57","5.49","3.20","379.00","265.30","5.49","3.18","10.99","6.41","4.99","3.50","610","427","4.99","3.33","4.99","3.50","17.99","11.99","18.90","13.23","59.00","33.04","6.98","4.57","5.49","3.15","5.99","3.49","5.49","3.20","6.99","4.89","4.99","3.50","4.99","3.50","5.00","3.25","4.99","3.50","5900","3755","3500","2450","4.99","3.50","30.00","20.58","18900.00","11117.65","4.99","3.50","1990.00","1393.00","149.00","104.30","5.49","3.23","129.00","74.63","4.99","3.50","34.99","20.76","5.49","3.23","170","110","10900.00","7630.00","45.00","25.20","5.49","3.18","5.49","3.28","5.49","3.18","4.99","3.50","4.99","3.50","4.99","3.50","4.99","3.50","5.99","3.49","4.49","3.14","4.99","3.50","4.99","3.50","4.99","3.50","5.49","3.20","79.99","55.99","4.99","3.38","5.99","3.65","5.49","3.26","4.99","3.50","99.00","69.30","19.90","13.14","5.49","3.18","109000","76300","1800.00","1260.00","4.99","3.50","5.49","3.18","4.99","3.50","55.00","30.80","5.49","3.10","4.99","3.50","8.99","5.47","5.49","3.20","4.99","3.50","4.99","2.91","4.99","3.50","5.49","3.10","4.99","3.50","4.99","3.50","5.49","3.26","16.90","11.83","249.00","174.30","750.00","525.00","23.99","13.65" +Tier 6,"48.00","33.60","6.99","3.98","5.99","4.20","5.99","4.20","49.99","27.99","2290","1262","20.99","14.69","89000","62300","6.99","3.98","19.90","13.93","20.99","13.99","5.99","4.20","499.00","296.02","99.99","60.86","5.99","4.20","7.43","4.20","7.19","4.20","6.99","4.01","6.99","4.08","5.99","4.20","5.99","4.20","6.99","4.08","9.99","6.36","29.99","17.64","6.99","4.18","6.99","4.16","6.99","4.08","459.00","321.30","6.99","4.04","12.99","7.58","5.99","4.20","730","511","5.99","3.99","5.99","4.20","20.99","13.99","22.90","16.03","69.00","38.64","8.98","5.87","6.99","4.01","6.99","4.08","6.99","4.08","8.49","5.94","5.99","4.20","5.99","4.20","6.00","3.90","5.99","4.20","7500","4773","3900","2730","5.99","4.20","40.00","27.44","22900.00","13470.59","5.99","4.20","2290.00","1603.00","179.00","125.30","6.99","4.11","149.00","86.20","5.99","4.20","39.99","23.72","6.99","4.11","190","123","12900.00","9030.00","49.00","27.44","6.99","4.04","6.99","4.18","6.99","4.04","5.99","4.20","5.99","4.20","5.99","4.20","5.99","4.20","6.99","4.08","5.49","3.84","5.99","4.20","5.99","4.20","5.99","4.20","6.99","4.08","99.99","69.99","5.99","4.06","6.99","4.25","6.99","4.15","5.99","4.20","109.00","76.30","24.90","16.44","6.99","4.04","129000","90300","2200.00","1540.00","5.99","4.20","6.99","4.04","5.99","4.20","65.00","36.40","6.99","3.95","5.99","4.20","9.99","6.08","6.99","4.08","5.99","4.20","5.99","3.49","5.99","4.20","6.99","3.95","5.99","4.20","5.99","4.20","6.99","4.15","19.90","13.93","299.00","209.30","900.00","630.00","27.99","15.93" +Tier 7,"53.00","37.10","7.99","4.55","6.99","4.90","6.99","4.90","59.99","33.59","2490","1372","24.99","17.49","99000","69300","7.99","4.55","25.90","18.13","24.99","16.66","6.99","4.90","549.00","325.68","109.99","66.95","6.99","4.90","8.67","4.90","8.39","4.90","7.99","4.58","7.99","4.66","6.99","4.90","6.99","4.90","7.99","4.66","10.99","6.99","34.99","20.58","7.99","4.78","7.99","4.76","7.99","4.66","529.00","370.30","7.99","4.62","14.99","8.74","6.99","4.90","860","602","6.99","4.66","6.99","4.90","24.99","16.66","24.90","17.43","85.00","47.60","9.98","6.53","7.99","4.58","7.99","4.66","7.99","4.66","9.99","6.99","6.99","4.90","6.99","4.90","7.00","4.55","6.99","4.90","8900","5664","4500","3150","6.99","4.90","45.00","30.87","25900.00","15235.29","6.99","4.90","2490.00","1743.00","199.00","139.30","7.99","4.70","179.00","103.55","6.99","4.90","49.99","29.66","7.99","4.70","230","149","14900.00","10430.00","59.00","33.04","7.99","4.62","7.99","4.78","7.99","4.62","6.99","4.90","6.99","4.90","6.99","4.90","6.99","4.90","7.99","4.66","6.49","4.54","6.99","4.90","6.99","4.90","6.99","4.90","7.99","4.66","119.99","83.99","6.99","4.74","7.99","4.86","7.99","4.74","6.99","4.90","129.00","90.30","29.90","19.75","7.99","4.62","149000","104300","2500.00","1750.00","6.99","4.90","7.99","4.62","6.99","4.90","75.00","42.00","7.99","4.51","6.99","4.90","11.99","7.30","7.99","4.66","6.99","4.90","6.99","4.08","6.99","4.90","7.99","4.51","6.99","4.90","6.99","4.90","7.99","4.74","22.90","16.03","349.00","244.30","1100.00","770.00","32.99","18.77" +Tier 8,"58.00","40.60","8.99","5.12","7.99","5.60","7.99","5.60","69.99","39.19","2990","1648","29.99","20.99","119000","83300","8.99","5.12","29.90","20.93","29.99","19.99","7.99","5.60","599.00","355.34","129.99","79.12","7.99","5.60","9.91","5.60","9.59","5.60","8.99","5.16","9.99","5.83","7.99","5.60","7.99","5.60","8.99","5.24","12.99","8.27","39.99","23.52","8.99","5.38","9.99","5.95","8.99","5.24","599.00","419.30","8.99","5.20","17.99","10.49","7.99","5.60","980","686","7.99","5.33","7.99","5.60","29.99","19.99","29.90","20.93","99.00","55.44","10.98","7.18","8.99","5.16","9.99","5.83","8.99","5.24","10.99","7.69","7.99","5.60","7.99","5.60","8.00","5.20","7.99","5.60","9900","6300","5500","3850","7.99","5.60","50.00","34.30","29900.00","17588.24","7.99","5.60","2990.00","2093.00","249.00","174.30","8.99","5.29","199.00","115.12","7.99","5.60","54.99","32.62","8.99","5.29","270","175","17900.00","12530.00","69.00","38.64","8.99","5.20","8.99","5.38","8.99","5.20","7.99","5.60","7.99","5.60","7.99","5.60","7.99","5.60","9.99","5.83","7.49","5.24","7.99","5.60","7.99","5.60","7.99","5.60","8.99","5.24","129.99","90.99","7.99","5.41","9.99","6.08","8.99","5.33","7.99","5.60","149.00","104.30","34.90","23.05","8.99","5.20","179000","125300","2900.00","2030.00","7.99","5.60","8.99","5.20","7.99","5.60","85.00","47.60","8.99","5.08","7.99","5.60","13.99","8.52","8.99","5.24","7.99","5.60","7.99","4.66","7.99","5.60","8.99","5.08","7.99","5.60","7.99","5.60","8.99","5.33","24.90","17.43","399.00","279.30","1200.00","840.00","37.99","21.62" +Tier 9,"68.00","47.60","9.99","5.69","8.99","6.30","8.99","6.30","79.99","44.79","3290","1813","32.99","23.09","129000","90300","9.99","5.69","31.90","22.33","32.99","21.99","8.99","6.30","699.00","414.66","139.99","85.21","8.99","6.30","11.15","6.30","10.79","6.30","9.99","5.73","10.99","6.41","8.99","6.30","8.99","6.30","9.99","5.83","13.99","8.90","44.99","26.46","9.99","5.98","10.99","6.55","9.99","5.83","699.00","489.30","9.99","5.78","19.99","11.66","8.99","6.30","1100","770","8.99","5.99","8.99","6.30","32.99","21.99","34.90","24.43","109.00","61.04","12.98","8.49","9.99","5.73","10.99","6.41","9.99","5.83","11.99","8.39","8.99","6.30","8.99","6.30","9.00","5.85","8.99","6.30","11000","7000","5900","4130","8.99","6.30","60.00","41.16","32900.00","19352.94","8.99","6.30","3490.00","2443.00","279.00","195.30","9.99","5.88","229.00","132.48","8.99","6.30","59.99","35.59","9.99","5.88","290","188","19900.00","13930.00","79.00","44.24","9.99","5.78","9.99","5.98","9.99","5.78","8.99","6.30","8.99","6.30","8.99","6.30","8.99","6.30","10.99","6.41","7.99","5.59","8.99","6.30","8.99","6.30","8.99","6.30","9.99","5.83","149.99","104.99","8.99","6.09","10.99","6.69","9.99","5.93","8.99","6.30","179.00","125.30","37.90","25.03","9.99","5.78","199000","139300","3200.00","2240.00","8.99","6.30","9.99","5.78","8.99","6.30","99.00","55.44","9.99","5.64","8.99","6.30","14.99","9.12","9.99","5.83","8.99","6.30","8.99","5.24","8.99","6.30","9.99","5.64","8.99","6.30","8.99","6.30","9.99","5.93","29.90","20.93","449.00","314.30","1400.00","980.00","42.99","24.47" +Tier 10,"78.00","54.60","10.99","6.25","9.99","7.00","9.99","7.00","89.99","50.39","3490","1924","36.99","25.89","149000","104300","10.99","6.25","35.90","25.13","36.99","24.66","9.99","7.00","799.00","473.98","149.99","91.30","9.99","7.00","12.39","7.00","11.99","7.00","10.99","6.31","11.99","6.99","9.99","7.00","9.99","7.00","10.99","6.41","14.99","9.54","49.99","29.41","10.99","6.58","11.99","7.14","10.99","6.41","749.00","524.30","10.99","6.36","21.99","12.83","9.99","7.00","1220","854","9.99","6.66","9.99","7.00","36.99","24.66","37.90","26.53","119.00","66.64","14.98","9.80","10.99","6.31","11.99","6.99","10.99","6.41","13.99","9.79","9.99","7.00","9.99","7.00","10.00","6.50","9.99","7.00","12000","7636","6500","4550","9.99","7.00","68.00","46.65","37900.00","22294.12","9.99","7.00","3990.00","2793.00","299.00","209.30","10.99","6.46","249.00","144.05","9.99","7.00","69.99","41.52","10.99","6.46","330","213","21900.00","15330.00","89.00","49.84","10.99","6.36","10.99","6.58","10.99","6.36","9.99","7.00","9.99","7.00","9.99","7.00","9.99","7.00","11.99","6.99","8.99","6.29","9.99","7.00","9.99","7.00","9.99","7.00","10.99","6.41","169.99","118.99","9.99","6.77","11.99","7.30","10.99","6.52","9.99","7.00","199.00","139.30","39.90","26.35","10.99","6.36","219000","153300","3500.00","2450.00","9.99","7.00","10.99","6.36","9.99","7.00","109.00","61.04","10.99","6.20","9.99","7.00","16.99","10.34","10.99","6.41","9.99","7.00","9.99","5.83","9.99","7.00","10.99","6.20","9.99","7.00","9.99","7.00","10.99","6.52","32.90","23.03","499.00","349.30","1500.00","1050.00","47.99","27.31" +Tier 11,"83.00","58.10","11.99","6.82","10.99","7.70","10.99","7.70","94.99","53.19","3990","2199","39.99","27.99","159000","111300","11.99","6.82","39.90","27.93","39.99","26.66","10.99","7.70","849.00","503.64","169.99","103.47","10.99","7.70","13.63","7.70","13.19","7.70","11.99","6.88","12.99","7.58","10.99","7.70","10.99","7.70","11.99","6.99","16.99","10.81","54.99","32.35","11.99","7.17","12.99","7.74","11.99","6.99","849.00","594.30","11.99","6.94","22.99","13.41","10.99","7.70","1340","938","10.99","7.33","10.99","7.70","39.99","26.66","39.90","27.93","129.00","72.24","15.98","10.45","11.99","6.88","12.99","7.58","11.99","6.99","14.99","10.49","10.99","7.70","10.99","7.70","11.00","7.15","10.99","7.70","14000","8909","7500","5250","10.99","7.70","73.00","50.08","39900.00","23470.59","10.99","7.70","4290.00","3003.00","329.00","230.30","11.99","7.05","279.00","161.40","10.99","7.70","74.99","44.49","11.99","7.05","370","239","22900.00","16030.00","95.00","53.20","11.99","6.94","11.99","7.17","11.99","6.94","10.99","7.70","10.99","7.70","10.99","7.70","10.99","7.70","12.99","7.58","9.99","6.99","10.99","7.70","10.99","7.70","10.99","7.70","11.99","6.99","179.99","125.99","10.99","7.45","12.99","7.91","11.99","7.11","10.99","7.70","209.00","146.30","44.90","29.65","11.99","6.94","229000","160300","3900.00","2730.00","10.99","7.70","11.99","6.94","10.99","7.70","119.00","66.64","11.99","6.77","10.99","7.70","18.99","11.56","11.99","6.99","10.99","7.70","10.99","6.41","10.99","7.70","11.99","6.77","10.99","7.70","10.99","7.70","11.99","7.11","34.90","24.43","549.00","384.30","1700.00","1190.00","52.99","30.16" +Tier 12,"88.00","61.60","12.99","7.39","11.99","8.40","11.99","8.40","99.99","55.99","4490","2475","44.99","31.49","179000","125300","12.99","7.39","43.90","30.73","44.99","29.99","11.99","8.40","899.00","533.31","179.99","109.56","11.99","8.40","14.87","8.40","14.39","8.40","12.99","7.45","14.99","8.74","11.99","8.40","11.99","8.40","12.99","7.58","17.99","11.45","59.99","35.29","12.99","7.77","14.99","8.93","12.99","7.58","899.00","629.30","12.99","7.51","24.99","14.58","11.99","8.40","1480","1036","11.99","7.99","11.99","8.40","44.99","29.99","44.90","31.43","149.00","83.44","16.98","11.11","12.99","7.45","14.99","8.74","12.99","7.58","16.99","11.89","11.99","8.40","11.99","8.40","12.00","7.80","11.99","8.40","15000","9545","7900","5530","11.99","8.40","78.00","53.51","44900.00","26411.76","11.99","8.40","4490.00","3143.00","349.00","244.30","12.99","7.64","299.00","172.98","11.99","8.40","79.99","47.45","12.99","7.64","390","252","24900.00","17430.00","99.00","55.44","12.99","7.51","12.99","7.77","12.99","7.51","11.99","8.40","11.99","8.40","11.99","8.40","11.99","8.40","14.99","8.74","10.99","7.69","11.99","8.40","11.99","8.40","11.99","8.40","12.99","7.58","199.99","139.99","11.99","8.12","14.99","9.12","12.99","7.71","11.99","8.40","229.00","160.30","49.90","32.95","12.99","7.51","249000","174300","4200.00","2940.00","11.99","8.40","12.99","7.51","11.99","8.40","129.00","72.24","12.99","7.33","11.99","8.40","19.99","12.17","12.99","7.58","11.99","8.40","11.99","6.99","11.99","8.40","12.99","7.33","11.99","8.40","11.99","8.40","12.99","7.71","39.90","27.93","599.00","419.30","1900.00","1330.00","54.99","31.30" +Tier 13,"98.00","68.60","13.99","7.96","12.99","9.10","12.99","9.10","109.99","61.59","4790","2640","47.99","33.59","189000","132300","13.99","7.96","45.90","32.13","47.99","31.99","12.99","9.10","999.00","592.63","199.99","121.73","12.99","9.10","16.11","9.10","15.59","9.10","13.99","8.03","15.99","9.33","12.99","9.10","12.99","9.10","13.99","8.16","19.99","12.72","64.99","38.23","13.99","8.37","15.99","9.53","13.99","8.16","999.00","699.30","13.99","8.09","27.99","16.33","12.99","9.10","1600","1120","12.99","8.66","12.99","9.10","47.99","31.99","49.90","34.93","159.00","89.04","17.98","11.76","13.99","8.03","15.99","9.33","13.99","8.16","17.99","12.59","12.99","9.10","12.99","9.10","13.00","8.45","12.99","9.10","16000","10182","8500","5950","12.99","9.10","88.00","60.37","49900.00","29352.94","12.99","9.10","4990.00","3493.00","399.00","279.30","13.99","8.23","329.00","190.33","12.99","9.10","89.99","53.38","13.99","8.23","430","278","27900.00","19530.00","109.00","61.04","13.99","8.09","13.99","8.37","13.99","8.09","12.99","9.10","12.99","9.10","12.99","9.10","12.99","9.10","15.99","9.33","11.99","8.39","12.99","9.10","12.99","9.10","12.99","9.10","13.99","8.16","219.99","153.99","12.99","8.80","15.99","9.73","13.99","8.30","12.99","9.10","249.00","174.30","54.90","36.25","13.99","8.09","279000","195300","4500.00","3150.00","12.99","9.10","13.99","8.09","12.99","9.10","139.00","77.84","13.99","7.90","12.99","9.10","22.99","13.99","13.99","8.16","12.99","9.10","12.99","7.58","12.99","9.10","13.99","7.90","12.99","9.10","12.99","9.10","13.99","8.30","42.90","30.03","649.00","454.30","2000.00","1400.00","59.99","34.14" +Tier 14,"108.00","75.60","14.99","8.53","13.99","9.80","13.99","9.80","119.99","67.19","4990","2750","49.99","34.99","199000","139300","14.99","8.53","49.90","34.93","49.99","33.33","13.99","9.80","1099.00","651.95","219.99","133.91","13.99","9.80","17.35","9.80","16.79","9.80","14.99","8.60","16.99","9.91","13.99","9.80","13.99","9.80","14.99","8.74","21.99","13.99","69.99","41.17","14.99","8.97","16.99","10.12","14.99","8.74","1090.00","763.00","14.99","8.67","29.99","17.49","13.99","9.80","1720","1204","13.99","9.33","13.99","9.80","49.99","33.33","52.90","37.03","169.00","94.64","19.98","13.07","14.99","8.60","16.99","9.91","14.99","8.74","19.99","13.99","13.99","9.80","13.99","9.80","14.00","9.10","13.99","9.80","17000","10818","8900","6230","13.99","9.80","93.00","63.80","52900.00","31117.65","13.99","9.80","5490.00","3843.00","429.00","300.30","14.99","8.82","349.00","201.90","13.99","9.80","94.99","56.35","14.99","8.82","470","304","29900.00","20930.00","119.00","66.64","14.99","8.67","14.99","8.97","14.99","8.67","13.99","9.80","13.99","9.80","13.99","9.80","13.99","9.80","16.99","9.91","12.99","9.09","13.99","9.80","13.99","9.80","13.99","9.80","14.99","8.74","229.99","160.99","13.99","9.48","16.99","10.34","14.99","8.89","13.99","9.80","259.00","181.30","57.90","38.24","14.99","8.67","299000","209300","4900.00","3430.00","13.99","9.80","14.99","8.67","13.99","9.80","149.00","83.44","14.99","8.46","13.99","9.80","24.99","15.21","14.99","8.74","13.99","9.80","13.99","8.16","13.99","9.80","14.99","8.46","13.99","9.80","13.99","9.80","14.99","8.89","44.90","31.43","699.00","489.30","2200.00","1540.00","64.99","36.99" +Tier 15,"118.00","82.60","16.99","9.67","14.99","10.50","14.99","10.50","129.99","72.79","5490","3026","54.99","38.49","219000","153300","16.99","9.67","53.90","37.73","54.99","36.66","14.99","10.50","1199.00","711.27","229.99","139.99","14.99","10.50","18.59","10.50","17.99","10.50","16.99","9.75","17.99","10.49","14.99","10.50","14.99","10.50","16.99","9.91","22.99","14.63","74.99","44.11","16.99","10.16","17.99","10.72","16.99","9.91","1150.00","805.00","16.99","9.83","32.99","19.24","14.99","10.50","1840","1288","14.99","9.99","14.99","10.50","54.99","36.66","54.90","38.43","179.00","100.24","21.98","14.38","16.99","9.75","17.99","10.49","16.99","9.91","20.99","14.69","14.99","10.50","14.99","10.50","15.00","9.75","14.99","10.50","19000","12091","9900","6930","14.99","10.50","98.00","67.24","54900.00","32294.12","14.99","10.50","5990.00","4193.00","449.00","314.30","16.99","9.99","379.00","219.26","14.99","10.50","99.99","59.32","16.99","9.99","490","317","32900.00","23030.00","129.00","72.24","16.99","9.83","16.99","10.16","16.99","9.83","14.99","10.50","14.99","10.50","14.99","10.50","14.99","10.50","17.99","10.49","13.99","9.79","14.99","10.50","14.99","10.50","14.99","10.50","16.99","9.91","249.99","174.99","14.99","10.16","17.99","10.95","16.99","10.08","14.99","10.50","279.00","195.30","59.90","39.56","16.99","9.83","329000","230300","5500.00","3850.00","14.99","10.50","16.99","9.83","14.99","10.50","159.00","89.04","16.99","9.59","14.99","10.50","25.99","15.82","16.99","9.91","14.99","10.50","14.99","8.74","14.99","10.50","16.99","9.59","14.99","10.50","14.99","10.50","16.99","10.08","49.90","34.93","749.00","524.30","2300.00","1610.00","69.99","39.83" +Tier 16,"123.00","86.10","17.99","10.24","15.99","11.20","15.99","11.20","139.99","78.39","5790","3191","59.99","41.99","239000","167300","17.99","10.24","55.90","39.13","59.99","39.99","15.99","11.20","1249.00","740.93","249.99","152.17","15.99","11.20","19.83","11.20","19.19","11.20","17.99","10.32","18.99","11.08","15.99","11.20","15.99","11.20","17.99","10.49","24.99","15.90","79.99","47.05","17.99","10.76","18.99","11.31","17.99","10.49","1190.00","833.00","17.99","10.41","34.99","20.41","15.99","11.20","1960","1372","15.99","10.66","15.99","11.20","59.99","39.99","59.90","41.93","189.00","105.84","22.98","15.03","17.99","10.32","18.99","11.08","17.99","10.49","21.99","15.39","15.99","11.20","15.99","11.20","16.00","10.40","15.99","11.20","20000","12727","10500","7350","15.99","11.20","108.00","74.10","59900.00","35235.29","15.99","11.20","6290.00","4403.00","479.00","335.30","17.99","10.58","399.00","230.83","15.99","11.20","109.99","65.25","17.99","10.58","530","343","34900.00","24430.00","139.00","77.84","17.99","10.41","17.99","10.76","17.99","10.41","15.99","11.20","15.99","11.20","15.99","11.20","15.99","11.20","18.99","11.08","14.49","10.14","15.99","11.20","15.99","11.20","15.99","11.20","17.99","10.49","269.99","188.99","15.99","10.84","18.99","11.56","17.99","10.67","15.99","11.20","299.00","209.30","64.90","42.86","17.99","10.41","349000","244300","5700.00","3990.00","15.99","11.20","17.99","10.41","15.99","11.20","169.00","94.64","17.99","10.16","15.99","11.20","27.99","17.04","17.99","10.49","15.99","11.20","15.99","9.33","15.99","11.20","17.99","10.16","15.99","11.20","15.99","11.20","17.99","10.67","52.90","37.03","799.00","559.30","2500.00","1750.00","74.99","42.68" +Tier 17,"128.00","89.60","18.99","10.81","16.99","11.90","16.99","11.90","144.99","81.19","5990","3302","64.99","45.49","249000","174300","18.99","10.81","59.90","41.93","64.99","43.33","16.99","11.90","1299.00","770.59","269.99","164.34","16.99","11.90","21.07","11.90","20.39","11.90","18.99","10.90","19.99","11.66","16.99","11.90","16.99","11.90","18.99","11.08","26.99","17.18","84.99","49.99","18.99","11.36","19.99","11.91","18.99","11.08","1290.00","903.00","18.99","10.99","37.99","22.16","16.99","11.90","2080","1456","16.99","11.33","16.99","11.90","64.99","43.33","64.90","45.43","199.00","111.44","23.98","15.69","18.99","10.90","19.99","11.66","18.99","11.08","23.99","16.79","16.99","11.90","16.99","11.90","17.00","11.05","16.99","11.90","21000","13364","10900","7630","16.99","11.90","113.00","77.53","62900.00","37000.00","16.99","11.90","6490.00","4543.00","499.00","349.30","18.99","11.17","429.00","248.18","16.99","11.90","114.99","68.21","18.99","11.17","570","369","37900.00","26530.00","145.00","81.20","18.99","10.99","18.99","11.36","18.99","10.99","16.99","11.90","16.99","11.90","16.99","11.90","16.99","11.90","19.99","11.66","14.99","10.49","16.99","11.90","16.99","11.90","16.99","11.90","18.99","11.08","279.99","195.99","16.99","11.51","19.99","12.17","18.99","11.27","16.99","11.90","319.00","223.30","69.90","46.16","18.99","10.99","379000","265300","5900.00","4130.00","16.99","11.90","18.99","10.99","16.99","11.90","179.00","100.24","18.99","10.72","16.99","11.90","29.99","18.25","18.99","11.08","16.99","11.90","16.99","9.91","16.99","11.90","18.99","10.72","16.99","11.90","16.99","11.90","18.99","11.27","54.90","38.43","849.00","594.30","2600.00","1820.00","79.99","45.52" +Tier 18,"138.00","96.60","19.99","11.38","17.99","12.60","17.99","12.60","149.99","83.99","6490","3577","67.99","47.59","269000","188300","19.99","11.38","63.90","44.73","67.99","45.33","17.99","12.60","1399.00","829.92","279.99","170.43","17.99","12.60","22.31","12.60","21.59","12.60","19.99","11.47","21.99","12.83","17.99","12.60","17.99","12.60","19.99","11.66","27.99","17.81","89.99","52.94","19.99","11.96","21.99","13.10","19.99","11.66","1390.00","973.00","19.99","11.56","38.99","22.74","17.99","12.60","2200","1540","17.99","11.99","17.99","12.60","67.99","45.33","69.90","48.93","219.00","122.64","25.98","17.00","19.99","11.47","21.99","12.83","19.99","11.66","24.99","17.49","17.99","12.60","17.99","12.60","18.00","11.70","17.99","12.60","22000","14000","11900","8330","17.99","12.60","118.00","80.96","64900.00","38176.47","17.99","12.60","6990.00","4893.00","549.00","384.30","19.99","11.76","449.00","259.75","17.99","12.60","119.99","71.18","19.99","11.76","590","382","39900.00","27930.00","149.00","83.44","19.99","11.56","19.99","11.96","19.99","11.56","17.99","12.60","17.99","12.60","17.99","12.60","17.99","12.60","21.99","12.83","15.99","11.19","17.99","12.60","17.99","12.60","17.99","12.60","19.99","11.66","299.99","209.99","17.99","12.19","21.99","13.39","19.99","11.86","17.99","12.60","339.00","237.30","74.90","49.46","19.99","11.56","399000","279300","6500.00","4550.00","17.99","12.60","19.99","11.56","17.99","12.60","189.00","105.84","19.99","11.28","17.99","12.60","30.99","18.86","19.99","11.66","17.99","12.60","17.99","10.49","17.99","12.60","19.99","11.28","17.99","12.60","17.99","12.60","19.99","11.86","59.90","41.93","899.00","629.30","2800.00","1960.00","84.99","48.37" +Tier 19,"148.00","103.60","20.99","11.95","18.99","13.30","18.99","13.30","159.99","89.59","6790","3743","69.99","48.99","279000","195300","20.99","11.95","67.90","47.53","69.99","46.66","18.99","13.30","1499.00","889.24","289.99","176.52","18.99","13.30","23.55","13.30","22.79","13.30","20.99","12.04","22.99","13.41","18.99","13.30","18.99","13.30","20.99","12.24","29.99","19.08","94.99","55.88","20.99","12.56","22.99","13.70","20.99","12.24","1450.00","1015.00","20.99","12.14","39.99","23.33","18.99","13.30","2320","1624","18.99","12.66","18.99","13.30","69.99","46.66","72.90","51.03","229.00","128.24","26.98","17.65","20.99","12.04","22.99","13.41","20.99","12.24","25.99","18.19","18.99","13.30","18.99","13.30","19.00","12.35","18.99","13.30","23000","14636","12500","8750","18.99","13.30","123.00","84.39","69900.00","41117.65","18.99","13.30","7490.00","5243.00","579.00","405.30","20.99","12.35","479.00","277.11","18.99","13.30","129.99","77.11","20.99","12.35","630","407","42900.00","30030.00","159.00","89.04","20.99","12.14","20.99","12.56","20.99","12.14","18.99","13.30","18.99","13.30","18.99","13.30","18.99","13.30","22.99","13.41","16.99","11.89","18.99","13.30","18.99","13.30","18.99","13.30","20.99","12.24","319.99","223.99","18.99","12.87","22.99","13.99","20.99","12.45","18.99","13.30","359.00","251.30","77.90","51.44","20.99","12.14","429000","300300","6900.00","4830.00","18.99","13.30","20.99","12.14","18.99","13.30","199.00","111.44","20.99","11.85","18.99","13.30","32.99","20.08","20.99","12.24","18.99","13.30","18.99","11.08","18.99","13.30","20.99","11.85","18.99","13.30","18.99","13.30","20.99","12.45","62.90","44.03","949.00","664.30","2900.00","2030.00","89.99","51.21" +Tier 20,"158.00","110.60","21.99","12.51","19.99","14.00","19.99","14.00","169.99","95.19","6990","3853","74.99","52.49","299000","209300","21.99","12.51","69.90","48.93","74.99","49.99","19.99","14.00","1599.00","948.56","299.99","182.60","19.99","14.00","24.79","14.00","23.99","14.00","21.99","12.62","23.99","13.99","19.99","14.00","19.99","14.00","21.99","12.83","30.99","19.72","99.99","58.82","21.99","13.16","23.99","14.29","21.99","12.83","1490.00","1043.00","21.99","12.72","42.99","25.08","19.99","14.00","2440","1708","19.99","13.33","19.99","14.00","74.99","49.99","74.90","52.43","239.00","133.84","28.98","18.96","21.99","12.62","23.99","13.99","21.99","12.83","27.99","19.59","19.99","14.00","19.99","14.00","20.00","13.00","19.99","14.00","25000","15909","12900","9030","19.99","14.00","128.00","87.82","74900.00","44058.82","19.99","14.00","7990.00","5593.00","599.00","419.30","21.99","12.94","499.00","288.68","19.99","14.00","134.99","80.08","21.99","12.94","670","433","44900.00","31430.00","169.00","94.64","21.99","12.72","21.99","13.16","21.99","12.72","19.99","14.00","19.99","14.00","19.99","14.00","19.99","14.00","23.99","13.99","17.99","12.59","19.99","14.00","19.99","14.00","19.99","14.00","21.99","12.83","329.99","230.99","19.99","13.55","23.99","14.60","21.99","13.04","19.99","14.00","379.00","265.30","79.90","52.76","21.99","12.72","449000","314300","7200.00","5040.00","19.99","14.00","21.99","12.72","19.99","14.00","219.00","122.64","21.99","12.41","19.99","14.00","34.99","21.30","21.99","12.83","19.99","14.00","19.99","11.66","19.99","14.00","21.99","12.41","19.99","14.00","19.99","14.00","21.99","13.04","64.90","45.43","999.00","699.30","3100.00","2170.00","94.99","54.06" +Tier 21,"163.00","114.10","22.99","13.08","20.99","14.70","20.99","14.70","179.99","100.79","7490","4128","77.99","54.59","309000","216300","22.99","13.08","73.90","51.73","77.99","51.99","20.99","14.70","1649.00","978.22","319.99","194.78","20.99","14.70","26.03","14.70","25.19","14.70","22.99","13.19","24.99","14.58","20.99","14.70","20.99","14.70","22.99","13.41","32.99","20.99","104.99","61.76","22.99","13.75","24.99","14.89","22.99","13.41","1590.00","1113.00","22.99","13.30","44.99","26.24","20.99","14.70","2580","1806","20.99","13.99","20.99","14.70","77.99","51.99","79.90","55.93","249.00","139.44","29.98","19.61","22.99","13.19","24.99","14.58","22.99","13.41","28.99","20.29","20.99","14.70","20.99","14.70","21.00","13.65","20.99","14.70","26000","16545","13900","9730","20.99","14.70","138.00","94.68","77900.00","45823.53","20.99","14.70","8290.00","5803.00","629.00","440.30","22.99","13.52","549.00","317.60","20.99","14.70","139.99","83.04","22.99","13.52","690","446","45900.00","32130.00","179.00","100.24","22.99","13.30","22.99","13.75","22.99","13.30","20.99","14.70","20.99","14.70","20.99","14.70","20.99","14.70","24.99","14.58","18.99","13.29","20.99","14.70","20.99","14.70","20.99","14.70","22.99","13.41","349.99","244.99","20.99","14.22","24.99","15.21","22.99","13.64","20.99","14.70","399.00","279.30","84.90","56.07","22.99","13.30","479000","335300","7500.00","5250.00","20.99","14.70","22.99","13.30","20.99","14.70","229.00","128.24","22.99","12.98","20.99","14.70","35.99","21.91","22.99","13.41","20.99","14.70","20.49","11.95","20.99","14.70","22.99","12.98","20.99","14.70","20.99","14.70","22.99","13.64","69.90","48.93","1050.00","735.00","3200.00","2240.00","99.99","56.90" +Tier 22,"168.00","117.60","23.99","13.65","21.99","15.40","21.99","15.40","189.99","106.39","7990","4404","79.99","55.99","319000","223300","23.99","13.65","77.90","54.53","79.99","53.33","21.99","15.40","1699.00","1007.88","329.99","200.86","21.99","15.40","27.27","15.40","26.39","15.40","23.99","13.76","25.99","15.16","21.99","15.40","21.99","15.40","23.99","13.99","34.99","22.27","109.99","64.70","23.99","14.35","25.99","15.48","23.99","13.99","1690.00","1183.00","23.99","13.88","47.99","27.99","21.99","15.40","2700","1890","21.99","14.66","21.99","15.40","79.99","53.33","82.90","58.03","269.00","150.64","31.98","20.92","23.99","13.76","25.99","15.16","23.99","13.99","29.99","20.99","21.99","15.40","21.99","15.40","22.00","14.30","21.99","15.40","27000","17182","14500","10150","21.99","15.40","148.00","101.54","79900.00","47000.00","21.99","15.40","8490.00","5943.00","649.00","454.30","23.99","14.11","579.00","334.96","21.99","15.40","149.99","88.98","23.99","14.11","730","472","47900.00","33530.00","189.00","105.84","23.99","13.88","23.99","14.35","23.99","13.88","21.99","15.40","21.99","15.40","21.99","15.40","21.99","15.40","25.99","15.16","19.99","13.99","21.99","15.40","21.99","15.40","21.99","15.40","23.99","13.99","369.99","258.99","21.99","14.90","25.99","15.82","23.99","14.23","21.99","15.40","409.00","286.30","89.90","59.37","23.99","13.88","499000","349300","7900.00","5530.00","21.99","15.40","23.99","13.88","21.99","15.40","239.00","133.84","23.99","13.54","21.99","15.40","37.99","23.12","23.99","13.99","21.99","15.40","20.99","12.24","21.99","15.40","23.99","13.54","21.99","15.40","21.99","15.40","23.99","14.23","72.90","51.03","1090.00","763.00","3400.00","2380.00","104.99","59.75" +Tier 23,"178.00","124.60","24.99","14.22","22.99","16.10","22.99","16.10","194.99","109.19","8490","4680","84.99","59.49","339000","237300","24.99","14.22","79.90","55.93","84.99","56.66","22.99","16.10","1799.00","1067.20","349.99","213.04","22.99","16.10","28.51","16.10","27.59","16.10","24.99","14.34","27.99","16.33","22.99","16.10","22.99","16.10","24.99","14.58","35.99","22.90","114.99","67.64","24.99","14.95","27.99","16.67","24.99","14.58","1750.00","1225.00","24.99","14.46","49.99","29.16","22.99","16.10","2820","1974","22.99","15.33","22.99","16.10","84.99","56.66","84.90","59.43","279.00","156.24","32.98","21.58","24.99","14.34","27.99","16.33","24.99","14.58","31.99","22.39","22.99","16.10","22.99","16.10","23.00","14.95","22.99","16.10","29000","18455","14900","10430","22.99","16.10","153.00","104.97","84900.00","49941.18","22.99","16.10","8990.00","6293.00","699.00","489.30","24.99","14.70","599.00","346.53","22.99","16.10","154.99","91.94","24.99","14.70","770","498","49900.00","34930.00","195.00","109.20","24.99","14.46","24.99","14.95","24.99","14.46","22.99","16.10","22.99","16.10","22.99","16.10","22.99","16.10","27.99","16.33","20.99","14.69","22.99","16.10","22.99","16.10","22.99","16.10","24.99","14.58","379.99","265.99","22.99","15.58","27.99","17.04","24.99","14.82","22.99","16.10","429.00","300.30","94.90","62.67","24.99","14.46","529000","370300","8200.00","5740.00","22.99","16.10","24.99","14.46","22.99","16.10","249.00","139.44","24.99","14.11","22.99","16.10","39.99","24.34","24.99","14.58","22.99","16.10","21.99","12.83","22.99","16.10","24.99","14.11","22.99","16.10","22.99","16.10","24.99","14.82","74.90","52.43","1150.00","805.00","3600.00","2520.00","109.99","62.60" +Tier 24,"188.00","131.60","26.99","15.36","23.99","16.80","23.99","16.80","199.99","111.99","8790","4845","87.99","61.59","349000","244300","26.99","15.36","85.90","60.13","87.99","58.66","23.99","16.80","1899.00","1126.53","379.99","231.30","23.99","16.80","29.75","16.80","28.79","16.80","26.99","15.49","28.99","16.91","23.99","16.80","23.99","16.80","26.99","15.74","37.99","24.18","119.99","70.58","26.99","16.15","28.99","17.27","26.99","15.74","1790.00","1253.00","26.99","15.61","51.99","30.33","23.99","16.80","2940","2058","23.99","15.99","23.99","16.80","87.99","58.66","89.90","62.93","289.00","161.84","33.98","22.23","26.99","15.49","28.99","16.91","26.99","15.74","32.99","23.09","23.99","16.80","23.99","16.80","24.00","15.60","23.99","16.80","30000","19091","15900","11130","23.99","16.80","158.00","108.40","89900.00","52882.35","23.99","16.80","9490.00","6643.00","729.00","510.30","26.99","15.88","629.00","363.88","23.99","16.80","159.99","94.91","26.99","15.88","790","511","52900.00","37030.00","199.00","111.44","26.99","15.61","26.99","16.15","26.99","15.61","23.99","16.80","23.99","16.80","23.99","16.80","23.99","16.80","28.99","16.91","21.99","15.39","23.99","16.80","23.99","16.80","23.99","16.80","26.99","15.74","399.99","279.99","23.99","16.26","28.99","17.65","26.99","16.01","23.99","16.80","449.00","314.30","99.90","65.97","26.99","15.61","549000","384300","8500.00","5950.00","23.99","16.80","26.99","15.61","23.99","16.80","259.00","145.04","26.99","15.24","23.99","16.80","41.99","25.56","26.99","15.74","23.99","16.80","22.99","13.41","23.99","16.80","26.99","15.24","23.99","16.80","23.99","16.80","26.99","16.01","77.90","54.53","1190.00","833.00","3700.00","2590.00","114.99","65.44" +Tier 25,"198.00","138.60","27.99","15.93","24.99","17.50","24.99","17.50","209.99","117.59","8990","4955","89.99","62.99","359000","251300","27.99","15.93","89.90","62.93","89.99","59.99","24.99","17.50","1949.00","1156.19","399.99","243.47","24.99","17.50","30.99","17.50","29.99","17.50","27.99","16.06","29.99","17.49","24.99","17.50","24.99","17.50","27.99","16.33","38.99","24.81","124.99","73.52","27.99","16.75","29.99","17.87","27.99","16.33","1890.00","1323.00","27.99","16.19","52.99","30.91","24.99","17.50","3060","2142","24.99","16.66","24.99","17.50","89.99","59.99","94.90","66.43","299.00","167.44","34.98","22.88","27.99","16.06","29.99","17.49","27.99","16.33","34.99","24.49","24.99","17.50","24.99","17.50","25.00","16.25","24.99","17.50","31000","19727","16500","11550","24.99","17.50","163.00","111.83","92900.00","54647.06","24.99","17.50","9990.00","6993.00","749.00","524.30","27.99","16.46","649.00","375.45","24.99","17.50","169.99","100.84","27.99","16.46","830","537","54900.00","38430.00","209.00","117.04","27.99","16.19","27.99","16.75","27.99","16.19","24.99","17.50","24.99","17.50","24.99","17.50","24.99","17.50","29.99","17.49","22.99","16.09","24.99","17.50","24.99","17.50","24.99","17.50","27.99","16.33","419.99","293.99","24.99","16.93","29.99","18.25","27.99","16.60","24.99","17.50","479.00","335.30","104.90","69.27","27.99","16.19","579000","405300","8900.00","6230.00","24.99","17.50","27.99","16.19","24.99","17.50","269.00","150.64","27.99","15.80","24.99","17.50","42.99","26.17","27.99","16.33","24.99","17.50","23.99","13.99","24.99","17.50","27.99","15.80","24.99","17.50","24.99","17.50","27.99","16.60","79.90","55.93","1250.00","875.00","3900.00","2730.00","119.99","68.29" +Tier 26,"203.00","142.10","28.99","16.50","25.99","18.20","25.99","18.20","219.99","123.19","9490","5231","94.99","66.49","379000","265300","28.99","16.50","91.90","64.33","94.99","63.33","25.99","18.20","1999.00","1185.85","419.99","255.65","25.99","18.20","32.23","18.20","31.19","18.20","28.99","16.63","30.99","18.08","25.99","18.20","25.99","18.20","28.99","16.91","39.99","25.45","129.99","76.46","28.99","17.34","30.99","18.46","28.99","16.91","1990.00","1393.00","28.99","16.77","54.99","32.08","25.99","18.20","3180","2226","25.99","17.33","25.99","18.20","94.99","63.33","99.90","69.93","309.00","173.04","36.98","24.19","28.99","16.63","30.99","18.08","28.99","16.91","35.99","25.19","25.99","18.20","25.99","18.20","26.00","16.90","25.99","18.20","32000","20364","16900","11830","25.99","18.20","168.00","115.26","94900.00","55823.53","25.99","18.20","10290.00","7203.00","799.00","559.30","28.99","17.05","679.00","392.81","25.99","18.20","174.99","103.81","28.99","17.05","870","563","57900.00","40530.00","219.00","122.64","28.99","16.77","28.99","17.34","28.99","16.77","25.99","18.20","25.99","18.20","25.99","18.20","25.99","18.20","30.99","18.08","23.99","16.79","25.99","18.20","25.99","18.20","25.99","18.20","28.99","16.91","429.99","300.99","25.99","17.61","30.99","18.86","28.99","17.20","25.99","18.20","499.00","349.30","109.90","72.58","28.99","16.77","599000","419300","9500.00","6650.00","25.99","18.20","28.99","16.77","25.99","18.20","279.00","156.24","28.99","16.37","25.99","18.20","44.99","27.39","28.99","16.91","25.99","18.20","24.99","14.58","25.99","18.20","28.99","16.37","25.99","18.20","25.99","18.20","28.99","17.20","82.90","58.03","1290.00","903.00","4000.00","2800.00","124.99","71.13" +Tier 27,"208.00","145.60","29.99","17.07","26.99","18.90","26.99","18.90","229.99","128.79","9790","5396","99.99","69.99","389000","272300","29.99","17.07","95.90","67.13","99.99","66.66","26.99","18.90","2099.00","1245.17","429.99","261.73","26.99","18.90","33.47","18.90","32.39","18.90","29.99","17.21","31.99","18.66","26.99","18.90","26.99","18.90","29.99","17.49","41.99","26.72","134.99","79.41","29.99","17.94","31.99","19.06","29.99","17.49","2050.00","1435.00","29.99","17.35","57.99","33.83","26.99","18.90","3300","2310","26.99","17.99","26.99","18.90","99.99","66.66","102.90","72.03","329.00","184.24","38.98","25.50","29.99","17.21","31.99","18.66","29.99","17.49","36.99","25.89","26.99","18.90","26.99","18.90","27.00","17.55","26.99","18.90","33000","21000","17900","12530","26.99","18.90","178.00","122.12","99900.00","58764.71","26.99","18.90","10490.00","7343.00","829.00","580.30","29.99","17.64","699.00","404.38","26.99","18.90","179.99","106.77","29.99","17.64","890","576","59900.00","41930.00","229.00","128.24","29.99","17.35","29.99","17.94","29.99","17.35","26.99","18.90","26.99","18.90","26.99","18.90","26.99","18.90","31.99","18.66","24.49","17.14","26.99","18.90","26.99","18.90","26.99","18.90","29.99","17.49","449.99","314.99","26.99","18.29","31.99","19.47","29.99","17.79","26.99","18.90","509.00","356.30","114.90","75.88","29.99","17.35","629000","440300","9700.00","6790.00","26.99","18.90","29.99","17.35","26.99","18.90","289.00","161.84","29.99","16.93","26.99","18.90","46.99","28.60","29.99","17.49","26.99","18.90","25.99","15.16","26.99","18.90","29.99","16.93","26.99","18.90","26.99","18.90","29.99","17.79","84.90","59.43","1350.00","945.00","4200.00","2940.00","127.99","72.84" +Tier 28,"218.00","152.60","30.99","17.64","27.99","19.60","27.99","19.60","239.99","134.39","9990","5506","104.99","73.49","409000","286300","30.99","17.64","99.90","69.93","104.99","69.99","27.99","19.60","2199.00","1304.49","449.99","273.91","27.99","19.60","34.71","19.60","33.59","19.60","30.99","17.78","33.99","19.83","27.99","19.60","27.99","19.60","30.99","18.08","42.99","27.36","139.99","82.35","30.99","18.54","33.99","20.25","30.99","18.08","2090.00","1463.00","30.99","17.93","59.99","34.99","27.99","19.60","3420","2394","27.99","18.66","27.99","19.60","104.99","69.99","104.90","73.43","339.00","189.84","40.98","26.81","30.99","17.78","33.99","19.83","30.99","18.08","37.99","26.59","27.99","19.60","27.99","19.60","28.00","18.20","27.99","19.60","35000","22273","18500","12950","27.99","19.60","188.00","128.98","104900.00","61705.88","27.99","19.60","10990.00","7693.00","849.00","594.30","30.99","18.23","729.00","421.74","27.99","19.60","189.99","112.71","30.99","18.23","930","601","60900.00","42630.00","239.00","133.84","30.99","17.93","30.99","18.54","30.99","17.93","27.99","19.60","27.99","19.60","27.99","19.60","27.99","19.60","33.99","19.83","24.99","17.49","27.99","19.60","27.99","19.60","27.99","19.60","30.99","18.08","469.99","328.99","27.99","18.97","33.99","20.69","30.99","18.38","27.99","19.60","529.00","370.30","119.90","79.18","30.99","17.93","649000","454300","9900.00","6930.00","27.99","19.60","30.99","17.93","27.99","19.60","299.00","167.44","30.99","17.49","27.99","19.60","47.99","29.21","30.99","18.08","27.99","19.60","26.99","15.74","27.99","19.60","30.99","17.49","27.99","19.60","27.99","19.60","30.99","18.38","89.90","62.93","1390.00","973.00","4300.00","3010.00","129.99","73.98" +Tier 29,"228.00","159.60","31.99","18.21","28.99","20.30","28.99","20.30","244.99","137.19","10490","5782","107.99","75.59","419000","293300","31.99","18.21","103.90","72.73","107.99","71.99","28.99","20.30","2249.00","1334.15","469.99","286.08","28.99","20.30","35.95","20.30","34.79","20.30","31.99","18.35","34.99","20.41","28.99","20.30","28.99","20.30","31.99","18.66","44.99","28.63","144.99","85.29","31.99","19.14","34.99","20.85","31.99","18.66","2190.00","1533.00","31.99","18.51","62.99","36.74","28.99","20.30","3540","2478","28.99","19.33","28.99","20.30","107.99","71.99","109.90","76.93","349.00","195.44","42.98","28.12","31.99","18.35","34.99","20.41","31.99","18.66","38.99","27.29","28.99","20.30","28.99","20.30","28.50","18.52","28.99","20.30","36000","22909","18900","13230","28.99","20.30","193.00","132.41","107900.00","63470.59","28.99","20.30","11490.00","8043.00","879.00","615.30","31.99","18.82","749.00","433.31","28.99","20.30","194.99","115.67","31.99","18.82","970","627","62900.00","44030.00","245.00","137.20","31.99","18.51","31.99","19.14","31.99","18.51","28.99","20.30","28.99","20.30","28.99","20.30","28.99","20.30","34.99","20.41","25.99","18.19","28.99","20.30","28.99","20.30","28.99","20.30","31.99","18.66","479.99","335.99","28.99","19.64","34.99","21.30","31.99","18.98","28.99","20.30","549.00","384.30","124.90","82.48","31.99","18.51","679000","475300","10500.00","7350.00","28.99","20.30","31.99","18.51","28.99","20.30","309.00","173.04","31.99","18.06","28.99","20.30","48.99","29.82","31.99","18.66","28.99","20.30","27.99","16.33","28.99","20.30","31.99","18.06","28.99","20.30","28.99","20.30","31.99","18.98","92.90","65.03","1450.00","1015.00","4500.00","3150.00","134.99","76.82" +Tier 30,"238.00","166.60","32.99","18.77","29.99","21.00","29.99","21.00","249.99","139.99","10990","6057","109.99","76.99","439000","307300","32.99","18.77","105.90","74.13","109.99","73.33","29.99","21.00","2299.00","1363.81","479.99","292.17","29.99","21.00","37.19","21.00","35.99","21.00","32.99","18.93","35.99","20.99","29.99","21.00","29.99","21.00","32.99","19.24","46.99","29.90","149.99","88.23","32.99","19.74","35.99","21.44","32.99","19.24","2290.00","1603.00","32.99","19.09","64.99","37.91","29.99","21.00","3680","2576","29.99","19.99","29.99","21.00","109.99","73.33","112.90","79.03","359.00","201.04","44.98","29.43","32.99","18.93","35.99","20.99","32.99","19.24","39.99","27.99","29.99","21.00","29.99","21.00","29.00","18.85","29.99","21.00","37000","23545","19900","13930","29.99","21.00","198.00","135.84","109900.00","64647.06","29.99","21.00","11990.00","8393.00","899.00","629.30","32.99","19.41","779.00","450.66","29.99","21.00","199.99","118.64","32.99","19.41","990","640","64900.00","45430.00","249.00","139.44","32.99","19.09","32.99","19.74","32.99","19.09","29.99","21.00","29.99","21.00","29.99","21.00","29.99","21.00","35.99","20.99","26.99","18.89","29.99","21.00","29.99","21.00","29.99","21.00","32.99","19.24","499.99","349.99","29.99","20.32","35.99","21.91","32.99","19.57","29.99","21.00","569.00","398.30","129.90","85.78","32.99","19.09","699000","489300","10900.00","7630.00","29.99","21.00","32.99","19.09","29.99","21.00","329.00","184.24","32.99","18.62","29.99","21.00","49.99","30.43","32.99","19.24","29.99","21.00","28.99","16.91","29.99","21.00","32.99","18.62","29.99","21.00","29.99","21.00","32.99","19.57","94.90","66.43","1490.00","1043.00","4600.00","3220.00","139.99","79.67" +Tier 31,"243.00","170.10","33.99","19.34","30.99","21.70","30.99","21.70","259.99","145.59","11290","6223","114.99","80.49","449000","314300","33.99","19.34","109.90","76.93","114.99","76.66","30.99","21.70","2399.00","1423.14","489.99","298.25","30.99","21.70","38.43","21.70","37.19","21.70","33.99","19.50","36.99","21.58","30.99","21.70","30.99","21.70","33.99","19.83","47.99","30.54","154.99","91.17","33.99","20.34","36.99","22.04","33.99","19.83","2350.00","1645.00","33.99","19.66","67.99","39.66","30.99","21.70","3800","2660","30.99","20.66","30.99","21.70","114.99","76.66","114.90","80.43","379.00","212.24","45.98","30.08","33.99","19.50","36.99","21.58","33.99","19.83","41.99","29.39","30.99","21.70","30.99","21.70","30.00","19.50","30.99","21.70","39000","24818","20500","14350","30.99","21.70","208.00","142.70","114900.00","67588.24","30.99","21.70","12290.00","8603.00","929.00","650.30","33.99","19.99","799.00","462.23","30.99","21.70","209.99","124.57","33.99","19.99","1020","660","66900.00","46830.00","259.00","145.04","33.99","19.66","33.99","20.34","33.99","19.66","30.99","21.70","30.99","21.70","30.99","21.70","30.99","21.70","36.99","21.58","27.99","19.59","30.99","21.70","30.99","21.70","30.99","21.70","33.99","19.83","519.99","363.99","30.99","21.00","36.99","22.52","33.99","20.16","30.99","21.70","579.00","405.30","134.90","89.08","33.99","19.66","709000","496300","11200.00","7840.00","30.99","21.70","33.99","19.66","30.99","21.70","339.00","189.84","33.99","19.19","30.99","21.70","52.99","32.25","33.99","19.83","30.99","21.70","29.99","17.49","30.99","21.70","33.99","19.19","30.99","21.70","30.99","21.70","33.99","20.16","99.90","69.93","1550.00","1085.00","4800.00","3360.00","144.99","82.51" +Tier 32,"248.00","173.60","34.99","19.91","31.99","22.40","31.99","22.40","269.99","151.19","11490","6333","117.99","82.59","469000","328300","34.99","19.91","113.90","79.73","117.99","78.66","31.99","22.40","2499.00","1482.46","499.99","304.34","31.99","22.40","39.67","22.40","38.39","22.40","34.99","20.08","37.99","22.16","31.99","22.40","31.99","22.40","34.99","20.41","49.99","31.81","159.99","94.11","34.99","20.93","37.99","22.63","34.99","20.41","2390.00","1673.00","34.99","20.24","69.99","40.83","31.99","22.40","3920","2744","31.99","21.33","31.99","22.40","117.99","78.66","119.90","83.93","389.00","217.84","46.98","30.73","34.99","20.08","37.99","22.16","34.99","20.41","43.99","30.79","31.99","22.40","31.99","22.40","31.00","20.15","31.99","22.40","40000","25455","20900","14630","31.99","22.40","218.00","149.56","119900.00","70529.41","31.99","22.40","12490.00","8743.00","949.00","664.30","34.99","20.58","829.00","479.59","31.99","22.40","219.99","130.50","34.99","20.58","1050","679","67900.00","47530.00","269.00","150.64","34.99","20.24","34.99","20.93","34.99","20.24","31.99","22.40","31.99","22.40","31.99","22.40","31.99","22.40","37.99","22.16","28.99","20.29","31.99","22.40","31.99","22.40","31.99","22.40","34.99","20.41","529.99","370.99","31.99","21.68","37.99","23.12","34.99","20.76","31.99","22.40","599.00","419.30","137.90","91.07","34.99","20.24","729000","510300","11500.00","8050.00","31.99","22.40","34.99","20.24","31.99","22.40","349.00","195.44","34.99","19.75","31.99","22.40","54.99","33.47","34.99","20.41","31.99","22.40","30.99","18.08","31.99","22.40","34.99","19.75","31.99","22.40","31.99","22.40","34.99","20.76","102.90","72.03","1590.00","1113.00","4900.00","3430.00","149.99","85.36" +Tier 33,"258.00","180.60","36.99","21.05","32.99","23.10","32.99","23.10","279.99","156.79","11990","6609","119.99","83.99","479000","335300","36.99","21.05","115.90","81.13","119.99","79.99","32.99","23.10","2599.00","1541.78","519.99","316.52","32.99","23.10","40.91","23.10","39.59","23.10","36.99","21.22","39.99","23.33","32.99","23.10","32.99","23.10","36.99","21.58","51.99","33.08","164.99","97.05","36.99","22.13","39.99","23.82","36.99","21.58","2490.00","1743.00","36.99","21.40","71.99","41.99","32.99","23.10","4040","2828","32.99","21.99","32.99","23.10","119.99","79.99","124.90","87.43","399.00","223.44","47.98","31.39","36.99","21.22","39.99","23.33","36.99","21.58","44.99","31.49","32.99","23.10","32.99","23.10","32.00","20.80","32.99","23.10","41000","26091","21900","15330","32.99","23.10","223.00","152.99","122900.00","72294.12","32.99","23.10","12990.00","9093.00","1000.00","700.00","36.99","21.76","849.00","491.16","32.99","23.10","224.99","133.47","36.99","21.76","1090","705","69900.00","48930.00","279.00","156.24","36.99","21.40","36.99","22.13","36.99","21.40","32.99","23.10","32.99","23.10","32.99","23.10","32.99","23.10","39.99","23.33","29.49","20.64","32.99","23.10","32.99","23.10","32.99","23.10","36.99","21.58","549.99","384.99","32.99","22.36","39.99","24.34","36.99","21.94","32.99","23.10","619.00","433.30","139.90","92.39","36.99","21.40","749000","524300","11900.00","8330.00","32.99","23.10","36.99","21.40","32.99","23.10","359.00","201.04","36.99","20.88","32.99","23.10","56.99","34.69","36.99","21.58","32.99","23.10","31.99","18.66","32.99","23.10","36.99","20.88","32.99","23.10","32.99","23.10","36.99","21.94","104.90","73.43","1650.00","1155.00","5100.00","3570.00","154.99","88.21" +Tier 34,"268.00","187.60","37.99","21.62","33.99","23.80","33.99","23.80","289.99","162.39","12490","6884","124.99","87.49","499000","349300","37.99","21.62","119.90","83.93","124.99","83.33","33.99","23.80","2649.00","1571.44","529.99","322.60","33.99","23.80","42.15","23.80","40.79","23.80","37.99","21.80","40.99","23.91","33.99","23.80","33.99","23.80","37.99","22.16","52.99","33.72","169.99","99.99","37.99","22.73","40.99","24.42","37.99","22.16","2590.00","1813.00","37.99","21.98","72.99","42.58","33.99","23.80","4160","2912","33.99","22.66","33.99","23.80","124.99","83.33","129.90","90.93","409.00","229.04","48.98","32.04","37.99","21.80","40.99","23.91","37.99","22.16","46.99","32.89","33.99","23.80","33.99","23.80","33.00","21.45","33.99","23.80","42000","26727","22500","15750","33.99","23.80","228.00","156.42","124900.00","73470.59","33.99","23.80","13290.00","9303.00","1020.00","714.00","37.99","22.35","879.00","508.51","33.99","23.80","229.99","136.43","37.99","22.35","1120","724","72900.00","51030.00","289.00","161.84","37.99","21.98","37.99","22.73","37.99","21.98","33.99","23.80","33.99","23.80","33.99","23.80","33.99","23.80","40.99","23.91","29.99","20.99","33.99","23.80","33.99","23.80","33.99","23.80","37.99","22.16","569.99","398.99","33.99","23.03","40.99","24.95","37.99","22.54","33.99","23.80","639.00","447.30","144.90","95.69","37.99","21.98","779000","545300","12200.00","8540.00","33.99","23.80","37.99","21.98","33.99","23.80","369.00","206.64","37.99","21.45","33.99","23.80","57.99","35.30","37.99","22.16","33.99","23.80","32.99","19.24","33.99","23.80","37.99","21.45","33.99","23.80","33.99","23.80","37.99","22.54","109.90","76.93","1690.00","1183.00","5200.00","3640.00","159.99","91.05" +Tier 35,"278.00","194.60","38.99","22.19","34.99","24.50","34.99","24.50","299.99","167.99","12790","7050","127.99","89.59","509000","356300","38.99","22.19","123.90","86.73","127.99","85.33","34.99","24.50","2699.00","1601.10","549.99","334.78","34.99","24.50","43.39","24.50","41.99","24.50","38.99","22.37","41.99","24.49","34.99","24.50","34.99","24.50","38.99","22.74","54.99","34.99","174.99","102.94","38.99","23.33","41.99","25.02","38.99","22.74","2650.00","1855.00","38.99","22.56","74.99","43.74","34.99","24.50","4280","2996","34.99","23.33","34.99","24.50","127.99","85.33","132.90","93.03","419.00","234.64","49.98","32.70","38.99","22.37","41.99","24.49","38.99","22.74","47.99","33.59","34.99","24.50","34.99","24.50","34.00","22.10","34.99","24.50","43000","27364","22900","16030","34.99","24.50","233.00","159.85","129900.00","76411.77","34.99","24.50","13490.00","9443.00","1050.00","735.00","38.99","22.94","899.00","520.08","34.99","24.50","239.99","142.37","38.99","22.94","1170","757","74900.00","52430.00","295.00","165.20","38.99","22.56","38.99","23.33","38.99","22.56","34.99","24.50","34.99","24.50","34.99","24.50","34.99","24.50","41.99","24.49","30.99","21.69","34.99","24.50","34.99","24.50","34.99","24.50","38.99","22.74","579.99","405.99","34.99","23.71","41.99","25.56","38.99","23.13","34.99","24.50","649.00","454.30","149.90","98.99","38.99","22.56","799000","559300","12500.00","8750.00","34.99","24.50","38.99","22.56","34.99","24.50","379.00","212.24","38.99","22.01","34.99","24.50","59.99","36.52","38.99","22.74","34.99","24.50","33.99","19.83","34.99","24.50","38.99","22.01","34.99","24.50","34.99","24.50","38.99","23.13","112.90","79.03","1750.00","1225.00","5400.00","3780.00","164.99","93.90" +Tier 36,"283.00","198.10","39.99","22.76","35.99","25.20","35.99","25.20","309.99","173.59","12990","7160","129.99","90.99","529000","370300","39.99","22.76","127.90","89.53","129.99","86.66","35.99","25.20","2799.00","1660.42","569.99","346.95","35.99","25.20","44.63","25.20","43.19","25.20","39.99","22.95","42.99","25.08","35.99","25.20","35.99","25.20","39.99","23.33","55.99","35.63","179.99","105.88","39.99","23.93","42.99","25.61","39.99","23.33","2690.00","1883.00","39.99","23.13","77.99","45.49","35.99","25.20","4400","3080","35.99","23.99","35.99","25.20","129.99","86.66","134.90","94.43","439.00","245.84","51.98","34.01","39.99","22.95","42.99","25.08","39.99","23.33","49.99","34.99","35.99","25.20","35.99","25.20","35.00","22.75","35.99","25.20","44000","28000","23900","16730","35.99","25.20","238.00","163.29","134900.00","79352.94","35.99","25.20","13990.00","9793.00","1100.00","770.00","39.99","23.52","929.00","537.44","35.99","25.20","244.99","145.33","39.99","23.52","1190","770","77900.00","54530.00","299.00","167.44","39.99","23.13","39.99","23.93","39.99","23.13","35.99","25.20","35.99","25.20","35.99","25.20","35.99","25.20","42.99","25.08","31.99","22.39","35.99","25.20","35.99","25.20","35.99","25.20","39.99","23.33","599.99","419.99","35.99","24.39","42.99","26.17","39.99","23.72","35.99","25.20","679.00","475.30","154.90","102.29","39.99","23.13","809000","566300","12900.00","9030.00","35.99","25.20","39.99","23.13","35.99","25.20","389.00","217.84","39.99","22.58","35.99","25.20","62.99","38.34","39.99","23.33","35.99","25.20","34.99","20.41","35.99","25.20","39.99","22.58","35.99","25.20","35.99","25.20","39.99","23.72","114.90","80.43","1790.00","1253.00","5500.00","3850.00","169.99","96.74" +Tier 37,"288.00","201.60","40.99","23.33","36.99","25.90","36.99","25.90","319.99","179.19","13490","7435","134.99","94.49","539000","377300","40.99","23.33","129.90","90.93","134.99","89.99","36.99","25.90","2899.00","1719.75","579.99","353.04","36.99","25.90","45.87","25.90","44.39","25.90","40.99","23.52","44.99","26.24","36.99","25.90","36.99","25.90","40.99","23.91","57.99","36.90","184.99","108.82","40.99","24.52","44.99","26.80","40.99","23.91","2790.00","1953.00","40.99","23.71","78.99","46.08","36.99","25.90","4520","3164","36.99","24.66","36.99","25.90","134.99","89.99","139.90","97.93","449.00","251.44","53.98","35.31","40.99","23.52","44.99","26.24","40.99","23.91","51.99","36.39","36.99","25.90","36.99","25.90","36.00","23.40","36.99","25.90","45000","28636","24500","17150","36.99","25.90","243.00","166.72","137900.00","81117.65","36.99","25.90","14290.00","10003.00","1120.00","784.00","40.99","24.11","949.00","549.01","36.99","25.90","249.99","148.30","40.99","24.11","1230","795","79900.00","55930.00","309.00","173.04","40.99","23.71","40.99","24.52","40.99","23.71","36.99","25.90","36.99","25.90","36.99","25.90","36.99","25.90","44.99","26.24","32.99","23.09","36.99","25.90","36.99","25.90","36.99","25.90","40.99","23.91","619.99","433.99","36.99","25.07","44.99","27.39","40.99","24.32","36.99","25.90","699.00","489.30","157.90","104.27","40.99","23.71","829000","580300","13200.00","9240.00","36.99","25.90","40.99","23.71","36.99","25.90","399.00","223.44","40.99","23.14","36.99","25.90","63.99","38.95","40.99","23.91","36.99","25.90","35.99","20.99","36.99","25.90","40.99","23.14","36.99","25.90","36.99","25.90","40.99","24.32","119.90","83.93","1850.00","1295.00","5700.00","3990.00","174.99","99.59" +Tier 38,"298.00","208.60","41.99","23.90","37.99","26.60","37.99","26.60","329.99","184.79","13790","7601","139.99","97.99","559000","391300","41.99","23.90","133.90","93.73","139.99","93.33","37.99","26.60","2949.00","1749.41","589.99","359.12","37.99","26.60","47.11","26.60","45.59","26.60","41.99","24.09","45.99","26.83","37.99","26.60","37.99","26.60","41.99","24.49","59.99","38.18","189.99","111.76","41.99","25.12","45.99","27.40","41.99","24.49","2890.00","2023.00","41.99","24.29","79.99","46.66","37.99","26.60","4640","3248","37.99","25.33","37.99","26.60","139.99","93.33","142.90","100.03","459.00","257.04","55.98","36.62","41.99","24.09","45.99","26.83","41.99","24.49","52.99","37.09","37.99","26.60","37.99","26.60","37.00","24.05","37.99","26.60","47000","29909","24900","17430","37.99","26.60","248.00","170.15","139900.00","82294.12","37.99","26.60","14490.00","10143.00","1150.00","805.00","41.99","24.70","979.00","566.36","37.99","26.60","259.99","154.23","41.99","24.70","1260","815","82900.00","58030.00","319.00","178.64","41.99","24.29","41.99","25.12","41.99","24.29","37.99","26.60","37.99","26.60","37.99","26.60","37.99","26.60","45.99","26.83","33.99","23.79","37.99","26.60","37.99","26.60","37.99","26.60","41.99","24.49","629.99","440.99","37.99","25.74","45.99","27.99","41.99","24.91","37.99","26.60","729.00","510.30","159.90","105.59","41.99","24.29","849000","594300","13500.00","9450.00","37.99","26.60","41.99","24.29","37.99","26.60","409.00","229.04","41.99","23.70","37.99","26.60","64.99","39.56","41.99","24.49","37.99","26.60","36.99","21.58","37.99","26.60","41.99","23.70","37.99","26.60","37.99","26.60","41.99","24.91","122.90","86.03","1890.00","1323.00","5900.00","4130.00","179.99","102.43" +Tier 39,"308.00","215.60","42.99","24.47","38.99","27.30","38.99","27.30","339.99","190.39","13990","7711","144.99","101.49","569000","398300","42.99","24.47","137.90","96.53","144.99","96.66","38.99","27.30","2999.00","1779.07","599.99","365.21","38.99","27.30","48.35","27.30","46.79","27.30","42.99","24.67","46.99","27.41","38.99","27.30","38.99","27.30","42.99","25.08","60.99","38.81","194.99","114.70","42.99","25.72","46.99","27.99","42.99","25.08","2950.00","2065.00","42.99","24.87","82.99","48.41","38.99","27.30","4780","3346","38.99","25.99","38.99","27.30","144.99","96.66","144.90","101.43","469.00","262.64","57.98","37.93","42.99","24.67","46.99","27.41","42.99","25.08","53.99","37.79","38.99","27.30","38.99","27.30","38.00","24.70","38.99","27.30","48000","30545","25900","18130","38.99","27.30","253.00","173.58","144900.00","85235.29","38.99","27.30","14990.00","10493.00","1200.00","840.00","42.99","25.29","999.00","577.93","38.99","27.30","264.99","157.20","42.99","25.29","1290","834","84900.00","59430.00","329.00","184.24","42.99","24.87","42.99","25.72","42.99","24.87","38.99","27.30","38.99","27.30","38.99","27.30","38.99","27.30","46.99","27.41","34.99","24.49","38.99","27.30","38.99","27.30","38.99","27.30","42.99","25.08","649.99","454.99","38.99","26.42","46.99","28.60","42.99","25.50","38.99","27.30","749.00","524.30","164.90","108.90","42.99","24.87","879000","615300","13900.00","9730.00","38.99","27.30","42.99","24.87","38.99","27.30","419.00","234.64","42.99","24.27","38.99","27.30","67.99","41.39","42.99","25.08","38.99","27.30","37.99","22.16","38.99","27.30","42.99","24.27","38.99","27.30","38.99","27.30","42.99","25.50","124.90","87.43","1950.00","1365.00","6000.00","4200.00","184.99","105.28" +Tier 40,"318.00","222.60","43.99","25.03","39.99","28.00","39.99","28.00","344.99","193.19","14490","7987","147.99","103.59","589000","412300","43.99","25.03","139.90","97.93","147.99","98.66","39.99","28.00","3099.00","1838.39","619.99","377.39","39.99","28.00","49.59","28.00","47.99","28.00","43.99","25.24","47.99","27.99","39.99","28.00","39.99","28.00","43.99","25.66","62.99","40.08","199.99","117.64","43.99","26.32","47.99","28.59","43.99","25.66","2990.00","2093.00","43.99","25.45","84.99","49.58","39.99","28.00","4900","3430","39.99","26.66","39.99","28.00","147.99","98.66","149.90","104.93","479.00","268.24","58.98","38.59","43.99","25.24","47.99","27.99","43.99","25.66","54.99","38.49","39.99","28.00","39.99","28.00","39.00","25.35","39.99","28.00","49000","31182","26500","18550","39.99","28.00","258.00","177.01","147900.00","87000.00","39.99","28.00","15490.00","10843.00","1220.00","854.00","43.99","25.88","1050.00","607.44","39.99","28.00","269.99","160.16","43.99","25.88","1320","854","87900.00","61530.00","339.00","189.84","43.99","25.45","43.99","26.32","43.99","25.45","39.99","28.00","39.99","28.00","39.99","28.00","39.99","28.00","47.99","27.99","35.99","25.19","39.99","28.00","39.99","28.00","39.99","28.00","43.99","25.66","669.99","468.99","39.99","27.10","47.99","29.21","43.99","26.10","39.99","28.00","759.00","531.30","167.90","110.88","43.99","25.45","899000","629300","14500.00","10150.00","39.99","28.00","43.99","25.45","39.99","28.00","439.00","245.84","43.99","24.83","39.99","28.00","69.99","42.60","43.99","25.66","39.99","28.00","38.99","22.74","39.99","28.00","43.99","24.83","39.99","28.00","39.99","28.00","43.99","26.10","129.90","90.93","1990.00","1393.00","6200.00","4340.00","189.99","108.12" +Tier 41,"323.00","226.10","44.99","25.60","40.99","28.70","40.99","28.70","349.99","195.99","14990","8262","149.99","104.99","599000","419300","44.99","25.60","145.90","102.13","149.99","99.99","40.99","28.70","3199.00","1897.71","629.99","383.47","40.99","28.70","50.83","28.70","49.19","28.70","44.99","25.81","48.99","28.58","40.99","28.70","40.99","28.70","44.99","26.24","64.99","41.36","204.99","120.58","44.99","26.92","48.99","29.19","44.99","26.24","3090.00","2163.00","44.99","26.03","87.99","51.33","40.99","28.70","5020","3514","40.99","27.33","40.99","28.70","149.99","99.99","154.90","108.43","499.00","279.44","59.98","39.24","44.99","25.81","48.99","28.58","44.99","26.24","56.99","39.89","40.99","28.70","40.99","28.70","40.00","26.00","40.99","28.70","50000","31818","26900","18830","40.99","28.70","263.00","180.44","149900.00","88176.47","40.99","28.70","15990.00","11193.00","1250.00","875.00","44.99","26.46","1070.00","619.01","40.99","28.70","279.99","166.10","44.99","26.46","1350","873","89900.00","62930.00","349.00","195.44","44.99","26.03","44.99","26.92","44.99","26.03","40.99","28.70","40.99","28.70","40.99","28.70","40.99","28.70","48.99","28.58","36.99","25.89","40.99","28.70","40.99","28.70","40.99","28.70","44.99","26.24","679.99","475.99","40.99","27.78","48.99","29.82","44.99","26.69","40.99","28.70","779.00","545.30","169.90","112.20","44.99","26.03","909000","636300","14900.00","10430.00","40.99","28.70","44.99","26.03","40.99","28.70","449.00","251.44","44.99","25.40","40.99","28.70","70.99","43.21","44.99","26.24","40.99","28.70","39.99","23.33","40.99","28.70","44.99","25.40","40.99","28.70","40.99","28.70","44.99","26.69","132.90","93.03","2050.00","1435.00","6400.00","4480.00","194.99","110.97" +Tier 42,"328.00","229.60","46.99","26.74","41.99","29.40","41.99","29.40","359.99","201.59","15290","8428","154.99","108.49","619000","433300","46.99","26.74","149.90","104.93","154.99","103.33","41.99","29.40","3249.00","1927.37","649.99","395.65","41.99","29.40","52.07","29.40","50.39","29.40","46.99","26.96","49.99","29.16","41.99","29.40","41.99","29.40","46.99","27.41","65.99","41.99","209.99","123.52","46.99","28.11","49.99","29.78","46.99","27.41","3190.00","2233.00","46.99","27.18","89.99","52.49","41.99","29.40","5140","3598","41.99","27.99","41.99","29.40","154.99","103.33","159.90","111.93","509.00","285.04","60.98","39.89","46.99","26.96","49.99","29.16","46.99","27.41","57.99","40.59","41.99","29.40","41.99","29.40","41.00","26.65","41.99","29.40","52000","33091","27900","19530","41.99","29.40","268.00","183.87","154900.00","91117.65","41.99","29.40","16290.00","11403.00","1300.00","910.00","46.99","27.64","1090.00","630.58","41.99","29.40","284.99","169.06","46.99","27.64","1390","899","92900.00","65030.00","359.00","201.04","46.99","27.18","46.99","28.11","46.99","27.18","41.99","29.40","41.99","29.40","41.99","29.40","41.99","29.40","49.99","29.16","37.99","26.59","41.99","29.40","41.99","29.40","41.99","29.40","46.99","27.41","699.99","489.99","41.99","28.45","49.99","30.43","46.99","27.88","41.99","29.40","799.00","559.30","174.90","115.50","46.99","27.18","929000","650300","15200.00","10640.00","41.99","29.40","46.99","27.18","41.99","29.40","459.00","257.04","46.99","26.53","41.99","29.40","72.99","44.43","46.99","27.41","41.99","29.40","40.99","23.91","41.99","29.40","46.99","26.53","41.99","29.40","41.99","29.40","46.99","27.88","134.90","94.43","2090.00","1463.00","6500.00","4550.00","199.99","113.82" +Tier 43,"338.00","236.60","47.99","27.31","42.99","30.10","42.99","30.10","369.99","207.19","15490","8538","157.99","110.59","629000","440300","47.99","27.31","151.90","106.33","157.99","105.33","42.99","30.10","3299.00","1957.03","669.99","407.82","42.99","30.10","53.31","30.10","51.59","30.10","47.99","27.54","51.99","30.33","42.99","30.10","42.99","30.10","47.99","27.99","67.99","43.27","214.99","126.46","47.99","28.71","51.99","30.97","47.99","27.99","3250.00","2275.00","47.99","27.76","92.99","54.24","42.99","30.10","5260","3682","42.99","28.66","42.99","30.10","157.99","105.33","162.90","114.03","519.00","290.64","61.98","40.55","47.99","27.54","51.99","30.33","47.99","27.99","59.99","41.99","42.99","30.10","42.99","30.10","42.00","27.30","42.99","30.10","53000","33727","28500","19950","42.99","30.10","273.00","187.30","159900.00","94058.82","42.99","30.10","16490.00","11543.00","1320.00","924.00","47.99","28.23","1120.00","647.93","42.99","30.10","289.99","172.03","47.99","28.23","1420","918","94900.00","66430.00","369.00","206.64","47.99","27.76","47.99","28.71","47.99","27.76","42.99","30.10","42.99","30.10","42.99","30.10","42.99","30.10","51.99","30.33","38.99","27.29","42.99","30.10","42.99","30.10","42.99","30.10","47.99","27.99","719.99","503.99","42.99","29.13","51.99","31.65","47.99","28.47","42.99","30.10","809.00","566.30","177.90","117.48","47.99","27.76","949000","664300","15500.00","10850.00","42.99","30.10","47.99","27.76","42.99","30.10","469.00","262.64","47.99","27.09","42.99","30.10","74.99","45.65","47.99","27.99","42.99","30.10","41.99","24.49","42.99","30.10","47.99","27.09","42.99","30.10","42.99","30.10","47.99","28.47","139.90","97.93","2150.00","1505.00","6600.00","4620.00","204.99","116.66" +Tier 44,"348.00","243.60","48.99","27.88","43.99","30.80","43.99","30.80","379.99","212.79","15990","8813","159.99","111.99","649000","454300","48.99","27.88","155.90","109.13","159.99","106.66","43.99","30.80","3399.00","2016.36","679.99","413.91","43.99","30.80","54.55","30.80","52.79","30.80","48.99","28.11","52.99","30.91","43.99","30.80","43.99","30.80","48.99","28.58","68.99","43.90","219.99","129.41","48.99","29.31","52.99","31.57","48.99","28.58","3290.00","2303.00","48.99","28.34","94.99","55.41","43.99","30.80","5380","3766","43.99","29.33","43.99","30.80","159.99","106.66","164.90","115.43","529.00","296.24","62.98","41.20","48.99","28.11","52.99","30.91","48.99","28.58","61.99","43.39","43.99","30.80","43.99","30.80","43.00","27.95","43.99","30.80","54000","34364","28900","20230","43.99","30.80","278.00","190.73","162900.00","95823.53","43.99","30.80","16990.00","11893.00","1350.00","945.00","48.99","28.82","1150.00","665.29","43.99","30.80","294.99","174.99","48.99","28.82","1470","951","96900.00","67830.00","379.00","212.24","48.99","28.34","48.99","29.31","48.99","28.34","43.99","30.80","43.99","30.80","43.99","30.80","43.99","30.80","52.99","30.91","39.99","27.99","43.99","30.80","43.99","30.80","43.99","30.80","48.99","28.58","729.99","510.99","43.99","29.81","52.99","32.25","48.99","29.06","43.99","30.80","829.00","580.30","179.90","118.80","48.99","28.34","979000","685300","15900.00","11130.00","43.99","30.80","48.99","28.34","43.99","30.80","479.00","268.24","48.99","27.66","43.99","30.80","75.99","46.25","48.99","28.58","43.99","30.80","42.99","25.08","43.99","30.80","48.99","27.66","43.99","30.80","43.99","30.80","48.99","29.06","142.90","100.03","2190.00","1533.00","6800.00","4760.00","209.99","119.51" +Tier 45,"358.00","250.60","49.99","28.45","44.99","31.50","44.99","31.50","389.99","218.39","16490","9089","164.99","115.49","659000","461300","49.99","28.45","159.90","111.93","164.99","109.99","44.99","31.50","3499.00","2075.68","699.99","426.08","44.99","31.50","55.79","31.50","53.99","31.50","49.99","28.68","53.99","31.49","44.99","31.50","44.99","31.50","49.99","29.16","69.99","44.54","224.99","132.35","49.99","29.91","53.99","32.16","49.99","29.16","3390.00","2373.00","49.99","28.92","97.99","57.16","44.99","31.50","5500","3850","44.99","29.99","44.99","31.50","164.99","109.99","169.90","118.93","539.00","301.84","63.98","41.86","49.99","28.68","53.99","31.49","49.99","29.16","62.99","44.09","44.99","31.50","44.99","31.50","44.00","28.60","44.99","31.50","55000","35000","29500","20650","44.99","31.50","283.00","194.16","164900.00","97000.00","44.99","31.50","17490.00","12243.00","1400.00","980.00","49.99","29.41","1170.00","676.86","44.99","31.50","299.99","177.96","49.99","29.41","1490","964","97900.00","68530.00","389.00","217.84","49.99","28.92","49.99","29.91","49.99","28.92","44.99","31.50","44.99","31.50","44.99","31.50","44.99","31.50","53.99","31.49","40.99","28.69","44.99","31.50","44.99","31.50","44.99","31.50","49.99","29.16","749.99","524.99","44.99","30.49","53.99","32.86","49.99","29.66","44.99","31.50","849.00","594.30","184.90","122.10","49.99","28.92","999000","699300","16200.00","11340.00","44.99","31.50","49.99","28.92","44.99","31.50","489.00","273.84","49.99","28.22","44.99","31.50","77.99","47.47","49.99","29.16","44.99","31.50","43.99","25.66","44.99","31.50","49.99","28.22","44.99","31.50","44.99","31.50","49.99","29.66","144.90","101.43","2250.00","1575.00","6900.00","4830.00","214.99","122.35" +Tier 46,"363.00","254.10","50.99","29.02","45.99","32.20","45.99","32.20","394.99","221.19","16790","9254","167.99","117.59","679000","475300","50.99","29.02","163.90","114.73","167.99","111.99","45.99","32.20","3599.00","2135.00","719.99","438.25","45.99","32.20","57.03","32.20","55.19","32.20","50.99","29.26","54.99","32.08","45.99","32.20","45.99","32.20","50.99","29.74","71.99","45.81","229.99","135.29","50.99","30.51","54.99","32.76","50.99","29.74","3490.00","2443.00","50.99","29.50","99.99","58.33","45.99","32.20","5620","3934","45.99","30.66","45.99","32.20","167.99","111.99","172.90","121.03","549.00","307.44","64.98","42.51","50.99","29.26","54.99","32.08","50.99","29.74","63.99","44.79","45.99","32.20","45.99","32.20","45.00","29.25","45.99","32.20","57000","36273","29900","20930","45.99","32.20","288.00","197.59","169900.00","99941.18","45.99","32.20","17990.00","12593.00","1420.00","994.00","50.99","29.99","1190.00","688.43","45.99","32.20","309.99","183.89","50.99","29.99","1530","989","99900.00","69930.00","399.00","223.44","50.99","29.50","50.99","30.51","50.99","29.50","45.99","32.20","45.99","32.20","45.99","32.20","45.99","32.20","54.99","32.08","41.99","29.39","45.99","32.20","45.99","32.20","45.99","32.20","50.99","29.74","769.99","538.99","45.99","31.16","54.99","33.47","50.99","30.25","45.99","32.20","879.00","615.30","187.90","124.08","50.99","29.50","1009000","706300","16500.00","11550.00","45.99","32.20","50.99","29.50","45.99","32.20","499.00","279.44","50.99","28.78","45.99","32.20","79.99","48.69","50.99","29.74","45.99","32.20","44.99","26.24","45.99","32.20","50.99","28.78","45.99","32.20","45.99","32.20","50.99","30.25","149.90","104.93","2290.00","1603.00","7100.00","4970.00","219.99","125.20" +Tier 47,"368.00","257.60","51.99","29.59","46.99","32.90","46.99","32.90","399.99","223.99","16990","9365","169.99","118.99","689000","482300","51.99","29.59","165.90","116.13","169.99","113.33","46.99","32.90","3699.00","2194.32","729.99","444.34","46.99","32.90","58.27","32.90","56.39","32.90","51.99","29.83","55.99","32.66","46.99","32.90","46.99","32.90","51.99","30.33","72.99","46.45","234.99","138.23","51.99","31.11","55.99","33.36","51.99","30.33","3590.00","2513.00","51.99","30.08","102.99","60.08","46.99","32.90","5740","4018","46.99","31.33","46.99","32.90","169.99","113.33","174.90","122.43","569.00","318.64","65.98","43.16","51.99","29.83","55.99","32.66","51.99","30.33","64.99","45.49","46.99","32.90","46.99","32.90","46.00","29.90","46.99","32.90","58000","36909","30900","21630","46.99","32.90","298.00","204.45","174900.00","102882.35","46.99","32.90","18290.00","12803.00","1450.00","1015.00","51.99","30.58","1220.00","705.79","46.99","32.90","319.99","189.82","51.99","30.58","1560","1009","102900.00","72030.00","409.00","229.04","51.99","30.08","51.99","31.11","51.99","30.08","46.99","32.90","46.99","32.90","46.99","32.90","46.99","32.90","55.99","32.66","42.99","30.09","46.99","32.90","46.99","32.90","46.99","32.90","51.99","30.33","779.99","545.99","46.99","31.84","55.99","34.08","51.99","30.84","46.99","32.90","899.00","629.30","189.90","125.41","51.99","30.08","1029000","720300","16900.00","11830.00","46.99","32.90","51.99","30.08","46.99","32.90","509.00","285.04","51.99","29.35","46.99","32.90","82.99","50.52","51.99","30.33","46.99","32.90","45.99","26.83","46.99","32.90","51.99","29.35","46.99","32.90","46.99","32.90","51.99","30.84","152.90","107.03","2350.00","1645.00","7200.00","5040.00","224.99","128.04" +Tier 48,"378.00","264.60","52.99","30.16","47.99","33.60","47.99","33.60","409.99","229.59","17490","9640","174.99","122.49","709000","496300","52.99","30.16","169.90","118.93","174.99","116.66","47.99","33.60","3799.00","2253.64","749.99","456.52","47.99","33.60","59.51","33.60","57.59","33.60","52.99","30.40","57.99","33.83","47.99","33.60","47.99","33.60","52.99","30.91","74.99","47.72","239.99","141.17","52.99","31.70","57.99","34.55","52.99","30.91","3650.00","2555.00","52.99","30.66","104.99","61.24","47.99","33.60","5860","4102","47.99","31.99","47.99","33.60","174.99","116.66","179.90","125.93","579.00","324.24","66.98","43.82","52.99","30.40","57.99","33.83","52.99","30.91","66.99","46.89","47.99","33.60","47.99","33.60","47.00","30.55","47.99","33.60","59000","37545","31900","22330","47.99","33.60","308.00","211.31","177900.00","104647.06","47.99","33.60","18490.00","12943.00","1470.00","1029.00","52.99","31.17","1250.00","723.14","47.99","33.60","329.99","195.76","52.99","31.17","1590","1028","104900.00","73430.00","419.00","234.64","52.99","30.66","52.99","31.70","52.99","30.66","47.99","33.60","47.99","33.60","47.99","33.60","47.99","33.60","57.99","33.83","43.99","30.79","47.99","33.60","47.99","33.60","47.99","33.60","52.99","30.91","799.99","559.99","47.99","32.52","57.99","35.30","52.99","31.43","47.99","33.60","909.00","636.30","194.90","128.71","52.99","30.66","1049000","734300","17500.00","12250.00","47.99","33.60","52.99","30.66","47.99","33.60","519.00","290.64","52.99","29.91","47.99","33.60","84.99","51.73","52.99","30.91","47.99","33.60","46.99","27.41","47.99","33.60","52.99","29.91","47.99","33.60","47.99","33.60","52.99","31.43","154.90","108.43","2390.00","1673.00","7400.00","5180.00","229.99","130.89" +Tier 49,"388.00","271.60","53.99","30.73","48.99","34.30","48.99","34.30","419.99","235.19","17790","9806","179.99","125.99","719000","503300","53.99","30.73","173.90","121.73","179.99","119.99","48.99","34.30","3899.00","2312.97","779.99","474.78","48.99","34.30","60.75","34.30","58.79","34.30","53.99","30.98","58.99","34.41","48.99","34.30","48.99","34.30","53.99","31.49","77.99","49.63","244.99","144.11","53.99","32.30","58.99","35.14","53.99","31.49","3690.00","2583.00","53.99","31.23","107.99","62.99","48.99","34.30","5980","4186","48.99","32.66","48.99","34.30","179.99","119.99","184.90","129.43","589.00","329.84","67.98","44.47","53.99","30.98","58.99","34.41","53.99","31.49","67.99","47.59","48.99","34.30","48.99","34.30","47.50","30.87","48.99","34.30","60000","38182","32900","23030","48.99","34.30","318.00","218.17","179900.00","105823.53","48.99","34.30","18990.00","13293.00","1500.00","1050.00","53.99","31.76","1270.00","734.71","48.99","34.30","339.99","201.69","53.99","31.76","1630","1054","107900.00","75530.00","429.00","240.24","53.99","31.23","53.99","32.30","53.99","31.23","48.99","34.30","48.99","34.30","48.99","34.30","48.99","34.30","58.99","34.41","44.99","31.49","48.99","34.30","48.99","34.30","48.99","34.30","53.99","31.49","819.99","573.99","48.99","33.20","58.99","35.91","53.99","32.03","48.99","34.30","929.00","650.30","197.90","130.69","53.99","31.23","1079000","755300","17700.00","12390.00","48.99","34.30","53.99","31.23","48.99","34.30","529.00","296.24","53.99","30.48","48.99","34.30","87.99","53.56","53.99","31.49","48.99","34.30","47.99","27.99","48.99","34.30","53.99","30.48","48.99","34.30","48.99","34.30","53.99","32.03","159.90","111.93","2450.00","1715.00","7500.00","5250.00","234.99","133.73" +Tier 50,"398.00","278.60","54.99","31.30","49.99","35.00","49.99","35.00","429.99","240.79","17990","9916","184.99","129.49","739000","517300","54.99","31.30","179.90","125.93","184.99","123.33","49.99","35.00","3999.00","2372.29","799.99","486.95","49.99","35.00","61.99","35.00","59.99","35.00","54.99","31.55","59.99","34.99","49.99","35.00","49.99","35.00","54.99","32.08","79.99","50.90","249.99","147.05","54.99","32.90","59.99","35.74","54.99","32.08","3790.00","2653.00","54.99","31.81","109.99","64.16","49.99","35.00","6100","4270","49.99","33.33","49.99","35.00","184.99","123.33","189.90","132.93","595.00","333.20","68.98","45.13","54.99","31.55","59.99","34.99","54.99","32.08","69.99","48.99","49.99","35.00","49.99","35.00","48.00","31.20","49.99","35.00","65000","41364","33900","23730","49.99","35.00","328.00","225.03","184900.00","108764.71","49.99","35.00","19990.00","13993.00","1600.00","1120.00","54.99","32.35","1290.00","746.28","49.99","35.00","349.99","207.62","54.99","32.35","1690","1093","109900.00","76930.00","449.00","251.44","54.99","31.81","54.99","32.90","54.99","31.81","49.99","35.00","49.99","35.00","49.99","35.00","49.99","35.00","59.99","34.99","45.99","32.19","49.99","35.00","49.99","35.00","49.99","35.00","54.99","32.08","829.99","580.99","49.99","33.88","59.99","36.52","54.99","32.62","49.99","35.00","949.00","664.30","199.90","132.01","54.99","31.81","1099000","769300","17900.00","12530.00","49.99","35.00","54.99","31.81","49.99","35.00","549.00","307.44","54.99","31.04","49.99","35.00","89.99","54.78","54.99","32.08","49.99","35.00","48.99","28.58","49.99","35.00","54.99","31.04","49.99","35.00","49.99","35.00","54.99","32.62","169.90","118.93","2490.00","1743.00","7900.00","5530.00","239.99","136.58" +Tier 51,"418.00","292.60","59.99","34.14","54.99","38.50","54.99","38.50","479.99","268.79","19990","11018","199.99","139.99","799000","559300","59.99","34.14","199.90","139.93","199.99","133.33","54.99","38.50","4499.00","2668.90","849.99","517.39","54.99","38.50","68.19","38.50","65.99","38.50","59.99","34.42","64.99","37.91","54.99","38.50","54.99","38.50","59.99","34.99","84.99","54.08","279.99","164.70","59.99","35.89","64.99","38.72","59.99","34.99","3990.00","2793.00","59.99","34.70","119.99","69.99","54.99","38.50","7000","4900","54.99","36.66","54.99","38.50","199.99","133.33","209.90","146.93","649.00","363.44","78.98","51.67","59.99","34.42","64.99","37.91","59.99","34.99","74.99","52.49","54.99","38.50","54.99","38.50","55.00","35.75","54.99","38.50","69000","43909","35900","25130","54.99","38.50","348.00","238.75","199900.00","117588.24","54.99","38.50","20990.00","14693.00","1700.00","1190.00","59.99","35.29","1490.00","861.98","54.99","38.50","379.99","225.42","59.99","35.29","1790","1158","119900.00","83930.00","479.00","268.24","59.99","34.70","59.99","35.89","59.99","34.70","54.99","38.50","54.99","38.50","54.99","38.50","54.99","38.50","64.99","37.91","49.99","34.99","54.99","38.50","54.99","38.50","54.99","38.50","59.99","34.99","899.99","629.99","54.99","37.26","64.99","39.56","59.99","35.59","54.99","38.50","999.00","699.30","229.90","151.82","59.99","34.70","1199000","839300","19900.00","13930.00","54.99","38.50","59.99","34.70","54.99","38.50","599.00","335.44","59.99","33.87","54.99","38.50","94.99","57.82","59.99","34.99","54.99","38.50","49.99","29.16","54.99","38.50","59.99","33.87","54.99","38.50","54.99","38.50","59.99","35.59","179.90","125.93","2790.00","1953.00","8500.00","5950.00","259.99","147.96" +Tier 52,"448.00","313.60","64.99","36.99","59.99","42.00","59.99","42.00","499.99","279.99","21990","12120","219.99","153.99","899000","629300","64.99","36.99","209.90","146.93","219.99","146.66","59.99","42.00","4999.00","2965.51","899.99","547.82","59.99","42.00","74.39","42.00","71.99","42.00","64.99","37.29","69.99","40.83","59.99","42.00","59.99","42.00","64.99","37.91","89.99","57.27","299.99","176.46","64.99","38.88","69.99","41.70","64.99","37.91","4490.00","3143.00","64.99","37.60","129.99","75.83","59.99","42.00","7500","5250","59.99","39.99","59.99","42.00","219.99","146.66","229.90","160.93","695.00","389.20","88.98","58.21","64.99","37.29","69.99","40.83","64.99","37.91","84.99","59.49","59.99","42.00","59.99","42.00","60.00","39.00","59.99","42.00","75000","47727","39900","27930","59.99","42.00","388.00","266.20","229900.00","135235.30","59.99","42.00","22990.00","16093.00","1800.00","1260.00","64.99","38.23","1590.00","919.83","59.99","42.00","399.99","237.28","64.99","38.23","1990","1287","129900.00","90930.00","499.00","279.44","64.99","37.60","64.99","38.88","64.99","37.60","59.99","42.00","59.99","42.00","59.99","42.00","59.99","42.00","69.99","40.83","54.99","38.49","59.99","42.00","59.99","42.00","59.99","42.00","64.99","37.91","999.99","699.99","59.99","40.65","69.99","42.60","64.99","38.55","59.99","42.00","1099.00","769.30","249.90","165.03","64.99","37.60","1299000","909300","21900.00","15330.00","59.99","42.00","64.99","37.60","59.99","42.00","649.00","363.44","64.99","36.69","59.99","42.00","99.99","60.86","64.99","37.91","59.99","42.00","54.99","32.08","59.99","42.00","64.99","36.69","59.99","42.00","59.99","42.00","64.99","38.55","199.90","139.93","2990.00","2093.00","9500.00","6650.00","279.99","159.34" +Tier 53,"488.00","341.60","69.99","39.83","64.99","45.50","64.99","45.50","549.99","307.99","22990","12672","229.99","160.99","949000","664300","69.99","39.83","229.90","160.93","229.99","153.33","64.99","45.50","5200.00","3084.75","999.99","608.69","64.99","45.50","80.59","45.50","77.99","45.50","69.99","40.16","79.99","46.66","64.99","45.50","64.99","45.50","69.99","40.83","99.99","63.63","329.99","194.11","69.99","41.87","79.99","47.65","69.99","40.83","4990.00","3493.00","69.99","40.49","139.99","81.66","64.99","45.50","8000","5600","64.99","43.33","64.99","45.50","229.99","153.33","249.90","174.93","795.00","445.20","94.98","62.14","69.99","40.16","79.99","46.66","69.99","40.83","89.99","62.99","64.99","45.50","64.99","45.50","65.00","42.25","64.99","45.50","79000","50273","42900","30030","64.99","45.50","418.00","286.78","249900.00","147000.00","64.99","45.50","24990.00","17493.00","1900.00","1330.00","69.99","41.17","1690.00","977.69","64.99","45.50","449.99","266.94","69.99","41.17","2190","1416","139900.00","97930.00","549.00","307.44","69.99","40.49","69.99","41.87","69.99","40.49","64.99","45.50","64.99","45.50","64.99","45.50","64.99","45.50","79.99","46.66","59.99","41.99","64.99","45.50","64.99","45.50","64.99","45.50","69.99","40.83","1099.99","769.99","64.99","44.04","79.99","48.69","69.99","41.52","64.99","45.50","1199.00","839.30","279.90","184.84","69.99","40.49","1399000","979300","22900.00","16030.00","64.99","45.50","69.99","40.49","64.99","45.50","699.00","391.44","69.99","39.51","64.99","45.50","109.99","66.95","69.99","40.83","64.99","45.50","59.99","34.99","64.99","45.50","69.99","39.51","64.99","45.50","64.99","45.50","69.99","41.52","209.90","146.93","3290.00","2303.00","9900.00","6930.00","299.99","170.73" +Tier 54,"548.00","383.60","74.99","42.68","69.99","49.00","69.99","49.00","599.99","335.99","24990","13774","249.99","174.99","999000","699300","74.99","42.68","249.90","174.93","249.99","166.66","69.99","49.00","5500.00","3262.71","1099.99","669.56","69.99","49.00","86.79","49.00","83.99","49.00","74.99","43.03","84.99","49.58","69.99","49.00","69.99","49.00","74.99","43.74","109.99","69.99","349.99","205.88","74.99","44.87","84.99","50.63","74.99","43.74","5490.00","3843.00","74.99","43.38","149.99","87.49","69.99","49.00","8500","5950","69.99","46.66","69.99","49.00","249.99","166.66","259.90","181.93","849.00","475.44","98.98","64.75","74.99","43.03","84.99","49.58","74.99","43.74","99.99","69.99","69.99","49.00","69.99","49.00","70.00","45.50","69.99","49.00","89000","56636","44900","31430","69.99","49.00","448.00","307.36","259900.00","152882.35","69.99","49.00","27990.00","19593.00","2100.00","1470.00","74.99","44.11","1790.00","1035.54","69.99","49.00","479.99","284.74","74.99","44.11","2290","1481","149900.00","104930.00","599.00","335.44","74.99","43.38","74.99","44.87","74.99","43.38","69.99","49.00","69.99","49.00","69.99","49.00","69.99","49.00","84.99","49.58","64.99","45.49","69.99","49.00","69.99","49.00","69.99","49.00","74.99","43.74","1199.99","839.99","69.99","47.43","84.99","51.73","74.99","44.49","69.99","49.00","1299.00","909.30","299.90","198.05","74.99","43.38","1499000","1049300","24900.00","17430.00","69.99","49.00","74.99","43.38","69.99","49.00","749.00","419.44","74.99","42.33","69.99","49.00","119.99","73.04","74.99","43.74","69.99","49.00","64.99","37.91","69.99","49.00","74.99","42.33","69.99","49.00","69.99","49.00","74.99","44.49","229.90","160.93","3490.00","2443.00","10900.00","7630.00","329.99","187.80" +Tier 55,"588.00","411.60","79.99","45.52","74.99","52.50","74.99","52.50","649.99","363.99","27990","15428","279.99","195.99","1099000","769300","79.99","45.52","259.90","181.93","279.99","186.66","74.99","52.50","5900.00","3500.00","1199.99","730.43","74.99","52.50","92.99","52.50","89.99","52.50","79.99","45.90","89.99","52.49","74.99","52.50","74.99","52.50","79.99","46.66","119.99","76.36","379.99","223.52","79.99","47.86","89.99","53.61","79.99","46.66","5790.00","4053.00","79.99","46.28","159.99","93.33","74.99","52.50","9000","6300","74.99","49.99","74.99","52.50","279.99","186.66","279.90","195.93","895.00","501.20","104.98","68.68","79.99","45.90","89.99","52.49","79.99","46.66","104.99","73.49","74.99","52.50","74.99","52.50","75.00","48.75","74.99","52.50","95000","60455","47900","33530","74.99","52.50","488.00","334.80","279900.00","164647.06","74.99","52.50","29990.00","20993.00","2300.00","1610.00","79.99","47.05","1990.00","1151.24","74.99","52.50","499.99","296.60","79.99","47.05","2490","1610","159900.00","111930.00","649.00","363.44","79.99","46.28","79.99","47.86","79.99","46.28","74.99","52.50","74.99","52.50","74.99","52.50","74.99","52.50","89.99","52.49","67.99","47.59","74.99","52.50","74.99","52.50","74.99","52.50","79.99","46.66","1249.99","874.99","74.99","50.82","89.99","54.78","79.99","47.45","74.99","52.50","1399.00","979.30","329.90","217.86","79.99","46.28","1699000","1189300","26900.00","18830.00","74.99","52.50","79.99","46.28","74.99","52.50","799.00","447.44","79.99","45.16","74.99","52.50","129.99","79.12","79.99","46.66","74.99","52.50","69.99","40.83","74.99","52.50","79.99","45.16","74.99","52.50","74.99","52.50","79.99","47.45","249.90","174.93","3790.00","2653.00","11900.00","8330.00","349.99","199.18" +Tier 56,"618.00","432.60","89.99","51.21","79.99","56.00","79.99","56.00","699.99","391.99","29990","16530","299.99","209.99","1199000","839300","89.99","51.21","279.90","195.93","299.99","199.99","79.99","56.00","6200.00","3677.97","1249.99","760.86","79.99","56.00","99.19","56.00","95.99","56.00","89.99","51.63","94.99","55.41","79.99","56.00","79.99","56.00","89.99","52.49","124.99","79.54","399.99","235.29","89.99","53.84","94.99","56.59","89.99","52.49","5990.00","4193.00","89.99","52.06","169.99","99.16","79.99","56.00","10000","7000","79.99","53.33","79.99","56.00","299.99","199.99","299.90","209.93","949.00","531.44","108.98","71.30","89.99","51.63","94.99","55.41","89.99","52.49","109.99","76.99","79.99","56.00","79.99","56.00","80.00","52.00","79.99","56.00","99000","63000","49900","34930","79.99","56.00","518.00","355.39","299900.00","176411.77","79.99","56.00","30990.00","21693.00","2500.00","1750.00","89.99","52.94","2090.00","1209.09","79.99","56.00","549.99","326.27","89.99","52.94","2690","1740","179900.00","125930.00","699.00","391.44","89.99","52.06","89.99","53.84","89.99","52.06","79.99","56.00","79.99","56.00","79.99","56.00","79.99","56.00","94.99","55.41","69.99","48.99","79.99","56.00","79.99","56.00","79.99","56.00","89.99","52.49","1299.99","909.99","79.99","54.20","94.99","57.82","89.99","53.38","79.99","56.00","1499.00","1049.30","349.90","231.07","89.99","52.06","1799000","1259300","29900.00","20930.00","79.99","56.00","89.99","52.06","79.99","56.00","849.00","475.44","89.99","50.80","79.99","56.00","139.99","85.21","89.99","52.49","79.99","56.00","74.99","43.74","79.99","56.00","89.99","50.80","79.99","56.00","79.99","56.00","89.99","53.38","259.90","181.93","3990.00","2793.00","12500.00","8750.00","379.99","216.25" +Tier 57,"648.00","453.60","94.99","54.06","84.99","59.50","84.99","59.50","749.99","419.99","30990","17081","319.99","223.99","1249000","874300","94.99","54.06","299.90","209.93","319.99","213.33","84.99","59.50","6500.00","3855.93","1299.99","791.30","84.99","59.50","105.39","59.50","101.99","59.50","94.99","54.50","99.99","58.33","84.99","59.50","84.99","59.50","94.99","55.41","129.99","82.72","429.99","252.94","94.99","56.83","99.99","59.57","94.99","55.41","6490.00","4543.00","94.99","54.95","179.99","104.99","84.99","59.50","10500","7350","84.99","56.66","84.99","59.50","319.99","213.33","309.90","216.93","995.00","557.20","118.98","77.84","94.99","54.50","99.99","58.33","94.99","55.41","114.99","80.49","84.99","59.50","84.99","59.50","85.00","55.25","84.99","59.50","105000","66818","54900","38430","84.99","59.50","548.00","375.97","319900.00","188176.47","84.99","59.50","32990.00","23093.00","2600.00","1820.00","94.99","55.88","2190.00","1266.94","84.99","59.50","579.99","344.06","94.99","55.88","2790","1804","189900.00","132930.00","749.00","419.44","94.99","54.95","94.99","56.83","94.99","54.95","84.99","59.50","84.99","59.50","84.99","59.50","84.99","59.50","99.99","58.33","74.99","52.49","84.99","59.50","84.99","59.50","84.99","59.50","94.99","55.41","1399.99","979.99","84.99","57.59","99.99","60.86","94.99","56.35","84.99","59.50","1599.00","1119.30","369.90","244.27","94.99","54.95","1899000","1329300","30900.00","21630.00","84.99","59.50","94.99","54.95","84.99","59.50","899.00","503.44","94.99","53.62","84.99","59.50","144.99","88.25","94.99","55.41","84.99","59.50","79.99","46.66","84.99","59.50","94.99","53.62","84.99","59.50","84.99","59.50","94.99","56.35","279.90","195.93","4290.00","3003.00","12900.00","9030.00","399.99","227.64" +Tier 58,"688.00","481.60","99.99","56.90","89.99","63.00","89.99","63.00","799.99","447.99","32990","18183","329.99","230.99","1299000","909300","99.99","56.90","319.90","223.93","329.99","219.99","89.99","63.00","6900.00","4093.22","1399.99","852.17","89.99","63.00","111.59","63.00","107.99","63.00","99.99","57.37","109.99","64.16","89.99","63.00","89.99","63.00","99.99","58.33","139.99","89.08","449.99","264.70","99.99","59.82","109.99","65.53","99.99","58.33","6990.00","4893.00","99.99","57.85","189.99","110.83","89.99","63.00","11000","7700","89.99","59.99","89.99","63.00","329.99","219.99","329.90","230.93","1095.00","613.20","128.98","84.38","99.99","57.37","109.99","64.16","99.99","58.33","119.99","83.99","89.99","63.00","89.99","63.00","90.00","58.50","89.99","63.00","109000","69364","59900","41930","89.99","63.00","588.00","403.41","329900.00","194058.83","89.99","63.00","34990.00","24493.00","2700.00","1890.00","99.99","58.82","2290.00","1324.79","89.99","63.00","599.99","355.93","99.99","58.82","2990","1934","199900.00","139930.00","799.00","447.44","99.99","57.85","99.99","59.82","99.99","57.85","89.99","63.00","89.99","63.00","89.99","63.00","89.99","63.00","109.99","64.16","79.99","55.99","89.99","63.00","89.99","63.00","89.99","63.00","99.99","58.33","1499.99","1049.99","89.99","60.98","109.99","66.95","99.99","59.32","89.99","63.00","1699.00","1189.30","379.90","250.88","99.99","57.85","1999000","1399300","32900.00","23030.00","89.99","63.00","99.99","57.85","89.99","63.00","949.00","531.44","99.99","56.45","89.99","63.00","149.99","91.30","99.99","58.33","89.99","63.00","84.99","49.58","89.99","63.00","99.99","56.45","89.99","63.00","89.99","63.00","99.99","59.32","299.90","209.93","4490.00","3143.00","13900.00","9730.00","429.99","244.71" +Tier 59,"748.00","523.60","104.99","59.75","94.99","66.50","94.99","66.50","849.99","475.99","34990","19286","349.99","244.99","1399000","979300","104.99","59.75","329.90","230.93","349.99","233.33","94.99","66.50","7500.00","4449.15","1449.99","882.60","94.99","66.50","117.79","66.50","113.99","66.50","104.99","60.24","114.99","67.08","94.99","66.50","94.99","66.50","104.99","61.24","149.99","95.45","479.99","282.35","104.99","62.81","114.99","68.50","104.99","61.24","7290.00","5103.00","104.99","60.74","199.99","116.66","94.99","66.50","11500","8050","94.99","63.33","94.99","66.50","349.99","233.33","349.90","244.93","1149.00","643.44","138.98","90.92","104.99","60.24","114.99","67.08","104.99","61.24","129.99","90.99","94.99","66.50","94.99","66.50","95.00","61.75","94.99","66.50","115000","73182","64900","45430","94.99","66.50","618.00","423.99","349900.00","205823.53","94.99","66.50","37990.00","26593.00","2900.00","2030.00","104.99","61.76","2390.00","1382.64","94.99","66.50","649.99","385.59","104.99","61.76","3190","2063","209900.00","146930.00","849.00","475.44","104.99","60.74","104.99","62.81","104.99","60.74","94.99","66.50","94.99","66.50","94.99","66.50","94.99","66.50","114.99","67.08","84.99","59.49","94.99","66.50","94.99","66.50","94.99","66.50","104.99","61.24","1599.99","1119.99","94.99","64.37","114.99","69.99","104.99","62.28","94.99","66.50","1799.00","1259.30","389.90","257.48","104.99","60.74","2099000","1469300","34900.00","24430.00","94.99","66.50","104.99","60.74","94.99","66.50","999.00","559.44","104.99","59.27","94.99","66.50","159.99","97.39","104.99","61.24","94.99","66.50","89.99","52.49","94.99","66.50","104.99","59.27","94.99","66.50","94.99","66.50","104.99","62.28","309.90","216.93","4790.00","3353.00","14900.00","10430.00","449.99","256.09" +Tier 60,"788.00","551.60","109.99","62.60","99.99","70.00","99.99","70.00","899.99","503.99","36990","20388","369.99","258.99","1499000","1049300","109.99","62.60","349.90","244.93","369.99","246.66","99.99","70.00","7900.00","4686.44","1499.99","913.04","99.99","70.00","123.99","70.00","119.99","70.00","109.99","63.11","119.99","69.99","99.99","70.00","99.99","70.00","109.99","64.16","159.99","101.81","499.99","294.11","109.99","65.81","119.99","71.48","109.99","64.16","7490.00","5243.00","109.99","63.63","219.99","128.33","99.99","70.00","12000","8400","99.99","66.66","99.99","70.00","369.99","246.66","379.90","265.93","1195.00","669.20","148.98","97.46","109.99","63.11","119.99","69.99","109.99","64.16","139.99","97.99","99.99","70.00","99.99","70.00","100.00","65.00","99.99","70.00","119000","75727","69900","48930","99.99","70.00","648.00","444.58","379900.00","223470.59","99.99","70.00","39990.00","27993.00","3000.00","2100.00","109.99","64.70","2490.00","1440.50","99.99","70.00","699.99","415.25","109.99","64.70","3290","2128","219900.00","153930.00","899.00","503.44","109.99","63.63","109.99","65.81","109.99","63.63","99.99","70.00","99.99","70.00","99.99","70.00","99.99","70.00","119.99","69.99","89.99","62.99","99.99","70.00","99.99","70.00","99.99","70.00","109.99","64.16","1699.99","1189.99","99.99","67.76","119.99","73.04","109.99","65.25","99.99","70.00","1899.00","1329.30","399.90","264.08","109.99","63.63","2199000","1539300","35900.00","25130.00","99.99","70.00","109.99","63.63","99.99","70.00","1090.00","610.40","109.99","62.09","99.99","70.00","169.99","103.47","109.99","64.16","99.99","70.00","99.99","58.33","99.99","70.00","109.99","62.09","99.99","70.00","99.99","70.00","109.99","65.25","329.90","230.93","4990.00","3493.00","15900.00","11130.00","479.99","273.17" +Tier 61,"848.00","593.60","119.99","68.29","109.99","77.00","109.99","77.00","949.99","531.99","39990","22042","399.99","279.99","1599000","1119300","119.99","68.29","399.90","279.93","399.99","266.66","109.99","77.00","8500.00","5042.37","1699.99","1034.78","109.99","77.00","136.39","77.00","131.99","77.00","119.99","68.85","129.99","75.83","109.99","77.00","109.99","77.00","119.99","69.99","169.99","108.18","549.99","323.52","119.99","71.79","129.99","77.44","119.99","69.99","8490.00","5943.00","119.99","69.42","229.99","134.16","109.99","77.00","13000","9100","109.99","73.33","109.99","77.00","399.99","266.66","399.90","279.93","1295.00","725.20","158.98","104.01","119.99","68.85","129.99","75.83","119.99","69.99","149.99","104.99","109.99","77.00","109.99","77.00","110.00","71.49","109.99","77.00","129000","82091","74900","52430","109.99","77.00","698.00","478.88","399900.00","235235.30","109.99","77.00","42990.00","30093.00","3300.00","2310.00","119.99","70.58","2790.00","1614.05","109.99","77.00","749.99","444.91","119.99","70.58","3690","2386","229900.00","160930.00","949.00","531.44","119.99","69.42","119.99","71.79","119.99","69.42","109.99","77.00","109.99","77.00","109.99","77.00","109.99","77.00","129.99","75.83","99.99","69.99","109.99","77.00","109.99","77.00","109.99","77.00","119.99","69.99","1799.99","1259.99","109.99","74.53","129.99","79.12","119.99","71.18","109.99","77.00","1999.00","1399.30","449.90","297.10","119.99","69.42","2299000","1609300","39900.00","27930.00","109.99","77.00","119.99","69.42","109.99","77.00","1190.00","666.40","119.99","67.74","109.99","77.00","189.99","115.65","119.99","69.99","109.99","77.00","109.99","64.16","109.99","77.00","119.99","67.74","109.99","77.00","109.99","77.00","119.99","71.18","349.90","244.93","5490.00","3843.00","16900.00","11830.00","529.99","301.62" +Tier 62,"888.00","621.60","129.99","73.98","119.99","84.00","119.99","84.00","999.99","559.99","42990","23695","429.99","300.99","1799000","1259300","129.99","73.98","429.90","300.93","429.99","286.66","119.99","84.00","8900.00","5279.66","1799.99","1095.65","119.99","84.00","148.79","84.00","143.99","84.00","129.99","74.58","139.99","81.66","119.99","84.00","119.99","84.00","129.99","75.83","179.99","114.54","599.99","352.94","129.99","77.77","139.99","83.40","129.99","75.83","8990.00","6293.00","129.99","75.20","249.99","145.83","119.99","84.00","14000","9800","119.99","79.99","119.99","84.00","429.99","286.66","449.90","314.93","1395.00","781.20","168.98","110.55","129.99","74.58","139.99","81.66","129.99","75.83","159.99","111.99","119.99","84.00","119.99","84.00","120.00","77.99","119.99","84.00","139000","88455","79900","55930","119.99","84.00","798.00","547.49","449900.00","264647.06","119.99","84.00","44990.00","31493.00","3500.00","2450.00","129.99","76.46","2990.00","1729.75","119.99","84.00","799.99","474.57","129.99","76.46","3990","2580","249900.00","174930.00","999.00","559.44","129.99","75.20","129.99","77.77","129.99","75.20","119.99","84.00","119.99","84.00","119.99","84.00","119.99","84.00","139.99","81.66","109.99","76.99","119.99","84.00","119.99","84.00","119.99","84.00","129.99","75.83","1999.99","1399.99","119.99","81.31","139.99","85.21","129.99","77.11","119.99","84.00","2299.00","1609.30","499.90","330.12","129.99","75.20","2499000","1749300","42900.00","30030.00","119.99","84.00","129.99","75.20","119.99","84.00","1250.00","700.00","129.99","73.38","119.99","84.00","199.99","121.73","129.99","75.83","119.99","84.00","119.99","69.99","119.99","84.00","129.99","73.38","119.99","84.00","119.99","84.00","129.99","77.11","399.90","279.93","5990.00","4193.00","17900.00","12530.00","549.99","313.00" +Tier 63,"988.00","691.60","139.99","79.67","124.99","87.50","124.99","87.50","1049.99","587.99","44990","24798","449.99","314.99","1849000","1294300","139.99","79.67","449.90","314.93","449.99","299.99","124.99","87.50","9500.00","5635.59","1899.99","1156.52","124.99","87.50","154.99","87.50","149.99","87.50","139.99","80.32","149.99","87.49","124.99","87.50","124.99","87.50","139.99","81.66","189.99","120.90","629.99","370.58","139.99","83.75","149.99","89.36","139.99","81.66","9490.00","6643.00","139.99","80.99","269.99","157.49","124.99","87.50","15000","10500","124.99","83.33","124.99","87.50","449.99","299.99","479.90","335.93","1495.00","837.20","178.98","117.09","139.99","80.32","149.99","87.49","139.99","81.66","169.99","118.99","124.99","87.50","124.99","87.50","125.00","81.24","124.99","87.50","149000","94818","84900","59430","124.99","87.50","818.00","561.21","479900.00","282294.12","124.99","87.50","47990.00","33593.00","3700.00","2590.00","139.99","82.35","3190.00","1845.45","124.99","87.50","849.99","504.23","139.99","82.35","4190","2710","269900.00","188930.00","1049.00","587.44","139.99","80.99","139.99","83.75","139.99","80.99","124.99","87.50","124.99","87.50","124.99","87.50","124.99","87.50","149.99","87.49","109.99","76.99","124.99","87.50","124.99","87.50","124.99","87.50","139.99","81.66","2099.99","1469.99","124.99","84.70","149.99","91.30","139.99","83.04","124.99","87.50","2399.00","1679.30","529.90","349.93","139.99","80.99","2799000","1959300","44900.00","31430.00","124.99","87.50","139.99","80.99","124.99","87.50","1290.00","722.40","139.99","79.03","124.99","87.50","219.99","133.91","139.99","81.66","124.99","87.50","124.99","72.91","124.99","87.50","139.99","79.03","124.99","87.50","124.99","87.50","139.99","83.04","409.90","286.93","6290.00","4403.00","18900.00","13230.00","599.99","341.46" +Tier 64,"1048.00","733.60","149.99","85.36","129.99","91.00","129.99","91.00","1099.99","615.99","47990","26451","479.99","335.99","1899000","1329300","149.99","85.36","459.90","321.93","479.99","319.99","129.99","91.00","9900.00","5872.88","1999.99","1217.39","129.99","91.00","161.19","91.00","155.99","91.00","149.99","86.06","159.99","93.33","129.99","91.00","129.99","91.00","149.99","87.49","199.99","127.27","649.99","382.35","149.99","89.74","159.99","95.31","149.99","87.49","9990.00","6993.00","149.99","86.77","279.99","163.33","129.99","91.00","16000","11200","129.99","86.66","129.99","91.00","479.99","319.99","499.90","349.93","1595.00","893.20","188.98","123.63","149.99","86.06","159.99","93.33","149.99","87.49","179.99","125.99","129.99","91.00","129.99","91.00","130.00","84.49","129.99","91.00","159000","101182","89900","62930","129.99","91.00","848.00","581.79","499900.00","294058.83","129.99","91.00","49990.00","34993.00","3900.00","2730.00","149.99","88.23","3390.00","1961.16","129.99","91.00","899.99","533.89","149.99","88.23","4290","2774","279900.00","195930.00","1099.00","615.44","149.99","86.77","149.99","89.74","149.99","86.77","129.99","91.00","129.99","91.00","129.99","91.00","129.99","91.00","159.99","93.33","119.99","83.99","129.99","91.00","129.99","91.00","129.99","91.00","149.99","87.49","2199.99","1539.99","129.99","88.09","159.99","97.39","149.99","88.98","129.99","91.00","2499.00","1749.30","549.90","363.14","149.99","86.77","2999000","2099300","47900.00","33530.00","129.99","91.00","149.99","86.77","129.99","91.00","1390.00","778.40","149.99","84.67","129.99","91.00","229.99","139.99","149.99","87.49","129.99","91.00","129.99","75.83","129.99","91.00","149.99","84.67","129.99","91.00","129.99","91.00","149.99","88.98","429.90","300.93","6490.00","4543.00","19900.00","13930.00","629.99","358.53" +Tier 65,"1088.00","761.60","159.99","91.05","139.99","98.00","139.99","98.00","1199.99","671.99","49990","27554","499.99","349.99","1999000","1399300","159.99","91.05","499.90","349.93","499.99","333.33","139.99","98.00","10900.00","6466.10","2199.99","1339.12","139.99","98.00","173.59","98.00","167.99","98.00","159.99","91.80","169.99","99.16","139.99","98.00","139.99","98.00","159.99","93.33","219.99","139.99","699.99","411.76","159.99","95.72","169.99","101.27","159.99","93.33","10990.00","7693.00","159.99","92.56","299.99","174.99","139.99","98.00","17000","11900","139.99","93.33","139.99","98.00","499.99","333.33","529.90","370.93","1695.00","949.20","198.98","130.17","159.99","91.80","169.99","99.16","159.99","93.33","199.99","139.99","139.99","98.00","139.99","98.00","140.00","90.99","139.99","98.00","169000","107545","94900","66430","139.99","98.00","898.00","616.09","529900.00","311705.89","139.99","98.00","54990.00","38493.00","4200.00","2940.00","159.99","94.11","3590.00","2076.86","139.99","98.00","949.99","563.55","159.99","94.11","4790","3098","299900.00","209930.00","1199.00","671.44","159.99","92.56","159.99","95.72","159.99","92.56","139.99","98.00","139.99","98.00","139.99","98.00","139.99","98.00","169.99","99.16","129.99","90.99","139.99","98.00","139.99","98.00","139.99","98.00","159.99","93.33","2299.99","1609.99","139.99","94.86","169.99","103.47","159.99","94.91","139.99","98.00","2699.00","1889.30","579.90","382.95","159.99","92.56","3099000","2169300","49900.00","34930.00","139.99","98.00","159.99","92.56","139.99","98.00","1490.00","834.40","159.99","90.32","139.99","98.00","239.99","146.08","159.99","93.33","139.99","98.00","139.99","81.66","139.99","98.00","159.99","90.32","139.99","98.00","139.99","98.00","159.99","94.91","449.90","314.93","6990.00","4893.00","21900.00","15330.00","649.99","369.91" +Tier 66,"1188.00","831.60","169.99","96.74","149.99","105.00","149.99","105.00","1299.99","727.99","54990","30309","549.99","384.99","2199000","1539300","169.99","96.74","539.90","377.93","549.99","366.66","149.99","105.00","11900.00","7059.32","2299.99","1399.99","149.99","105.00","185.99","105.00","179.99","105.00","169.99","97.54","179.99","104.99","149.99","105.00","149.99","105.00","169.99","99.16","229.99","146.36","749.99","441.17","169.99","101.70","179.99","107.23","169.99","99.16","11490.00","8043.00","169.99","98.34","329.99","192.49","149.99","105.00","18000","12600","149.99","99.99","149.99","105.00","549.99","366.66","549.90","384.93","1795.00","1005.20","218.98","143.26","169.99","97.54","179.99","104.99","169.99","99.16","209.99","146.99","149.99","105.00","149.99","105.00","150.00","97.49","149.99","105.00","179000","113909","99900","69930","149.99","105.00","998.00","684.70","549900.00","323470.59","149.99","105.00","57990.00","40593.00","4500.00","3150.00","169.99","99.99","3790.00","2192.56","149.99","105.00","999.99","593.21","169.99","99.99","4990","3227","329900.00","230930.00","1299.00","727.44","169.99","98.34","169.99","101.70","169.99","98.34","149.99","105.00","149.99","105.00","149.99","105.00","149.99","105.00","179.99","104.99","139.99","97.99","149.99","105.00","149.99","105.00","149.99","105.00","169.99","99.16","2499.99","1749.99","149.99","101.64","179.99","109.56","169.99","100.84","149.99","105.00","2899.00","2029.30","599.90","396.16","169.99","98.34","3299000","2309300","54900.00","38430.00","149.99","105.00","169.99","98.34","149.99","105.00","1590.00","890.40","169.99","95.96","149.99","105.00","249.99","152.17","169.99","99.16","149.99","105.00","149.99","87.49","149.99","105.00","169.99","95.96","149.99","105.00","149.99","105.00","169.99","100.84","479.90","335.93","7490.00","5243.00","22900.00","16030.00","699.99","398.37" +Tier 67,"1248.00","873.60","179.99","102.43","159.99","112.00","159.99","112.00","1399.99","783.99","57990","31963","579.99","405.99","2399000","1679300","179.99","102.43","559.90","391.93","579.99","386.66","159.99","112.00","12500.00","7415.26","2499.99","1521.73","159.99","112.00","198.39","112.00","191.99","112.00","179.99","103.27","189.99","110.83","159.99","112.00","159.99","112.00","179.99","104.99","249.99","159.08","799.99","470.58","179.99","107.69","189.99","113.19","179.99","104.99","11990.00","8393.00","179.99","104.13","349.99","204.16","159.99","112.00","19000","13300","159.99","106.66","159.99","112.00","579.99","386.66","599.90","419.93","1895.00","1061.20","228.98","149.80","179.99","103.27","189.99","110.83","179.99","104.99","219.99","153.99","159.99","112.00","159.99","112.00","160.00","103.99","159.99","112.00","199000","126636","104900","73430","159.99","112.00","1048.00","719.00","599900.00","352882.36","159.99","112.00","59990.00","41993.00","4700.00","3290.00","179.99","105.88","3990.00","2308.26","159.99","112.00","1099.99","652.54","179.99","105.88","5390","3486","349900.00","244930.00","1399.00","783.44","179.99","104.13","179.99","107.69","179.99","104.13","159.99","112.00","159.99","112.00","159.99","112.00","159.99","112.00","189.99","110.83","144.99","101.49","159.99","112.00","159.99","112.00","159.99","112.00","179.99","104.99","2699.99","1889.99","159.99","108.42","189.99","115.65","179.99","106.77","159.99","112.00","2999.00","2099.30","649.90","429.18","179.99","104.13","3499000","2449300","57900.00","40530.00","159.99","112.00","179.99","104.13","159.99","112.00","1690.00","946.40","179.99","101.61","159.99","112.00","279.99","170.43","179.99","104.99","159.99","112.00","159.99","93.33","159.99","112.00","179.99","101.61","159.99","112.00","159.99","112.00","179.99","106.77","499.90","349.93","7990.00","5593.00","24900.00","17430.00","749.99","426.82" +Tier 68,"1288.00","901.60","189.99","108.12","169.99","119.00","169.99","119.00","1449.99","811.99","59990","33065","599.99","419.99","2499000","1749300","189.99","108.12","599.90","419.93","599.99","399.99","169.99","119.00","12900.00","7652.54","2599.99","1582.60","169.99","119.00","210.79","119.00","203.99","119.00","189.99","109.01","199.99","116.66","169.99","119.00","169.99","119.00","189.99","110.83","259.99","165.45","849.99","499.99","189.99","113.67","199.99","119.14","189.99","110.83","12990.00","9093.00","189.99","109.91","369.99","215.83","169.99","119.00","20000","14000","169.99","113.33","169.99","119.00","599.99","399.99","629.90","440.93","1995.00","1117.20","238.98","156.34","189.99","109.01","199.99","116.66","189.99","110.83","229.99","160.99","169.99","119.00","169.99","119.00","170.00","110.49","169.99","119.00","209000","133000","109900","76930","169.99","119.00","1098.00","753.31","629900.00","370529.42","169.99","119.00","64990.00","45493.00","4900.00","3430.00","189.99","111.76","4290.00","2481.82","169.99","119.00","1149.99","682.20","189.99","111.76","5490","3550","379900.00","265930.00","1449.00","811.44","189.99","109.91","189.99","113.67","189.99","109.91","169.99","119.00","169.99","119.00","169.99","119.00","169.99","119.00","199.99","116.66","149.99","104.99","169.99","119.00","169.99","119.00","169.99","119.00","189.99","110.83","2799.99","1959.99","169.99","115.19","199.99","121.73","189.99","112.71","169.99","119.00","3299.00","2309.30","699.90","462.20","189.99","109.91","3799000","2659300","59900.00","41930.00","169.99","119.00","189.99","109.91","169.99","119.00","1750.00","980.00","189.99","107.25","169.99","119.00","289.99","176.52","189.99","110.83","169.99","119.00","169.99","99.16","169.99","119.00","189.99","107.25","169.99","119.00","169.99","119.00","189.99","112.71","549.90","384.93","8490.00","5943.00","25900.00","18130.00","799.99","455.28" +Tier 69,"1388.00","971.60","199.99","113.82","174.99","122.50","174.99","122.50","1499.99","839.99","62990","34719","649.99","454.99","2599000","1819300","199.99","113.82","619.90","433.93","649.99","433.33","174.99","122.50","13500.00","8008.48","2699.99","1643.47","174.99","122.50","216.99","122.50","209.99","122.50","199.99","114.75","209.99","122.49","174.99","122.50","174.99","122.50","199.99","116.66","269.99","171.81","879.99","517.64","199.99","119.65","209.99","125.10","199.99","116.66","13490.00","9443.00","199.99","115.70","379.99","221.66","174.99","122.50","21000","14700","174.99","116.66","174.99","122.50","649.99","433.33","649.90","454.93","2095.00","1173.20","248.98","162.88","199.99","114.75","209.99","122.49","199.99","116.66","239.99","167.99","174.99","122.50","174.99","122.50","175.00","113.74","174.99","122.50","219000","139364","114900","80430","174.99","122.50","1148.00","787.61","649900.00","382294.12","174.99","122.50","67990.00","47593.00","5200.00","3640.00","199.99","117.64","4490.00","2597.52","174.99","122.50","1199.99","711.86","199.99","117.64","5690","3680","389900.00","272930.00","1499.00","839.44","199.99","115.70","199.99","119.65","199.99","115.70","174.99","122.50","174.99","122.50","174.99","122.50","174.99","122.50","209.99","122.49","159.99","111.99","174.99","122.50","174.99","122.50","174.99","122.50","199.99","116.66","2899.99","2029.99","174.99","118.58","209.99","127.82","199.99","118.64","174.99","122.50","3399.00","2379.30","729.90","482.01","199.99","115.70","3899000","2729300","62900.00","44030.00","174.99","122.50","199.99","115.70","174.99","122.50","1790.00","1002.40","199.99","112.90","174.99","122.50","299.99","182.60","199.99","116.66","174.99","122.50","174.99","102.08","174.99","122.50","199.99","112.90","174.99","122.50","174.99","122.50","199.99","118.64","579.90","405.93","8790.00","6153.00","26900.00","18830.00","829.99","472.35" +Tier 70,"1448.00","1013.60","209.99","119.51","179.99","126.00","179.99","126.00","1549.99","867.99","64990","35821","679.99","475.99","2699000","1889300","209.99","119.51","639.90","447.93","679.99","453.33","179.99","126.00","13900.00","8245.76","2799.99","1704.34","179.99","126.00","223.19","126.00","215.99","126.00","209.99","120.49","219.99","128.33","179.99","126.00","179.99","126.00","209.99","122.49","279.99","178.18","899.99","529.41","209.99","125.64","219.99","131.06","209.99","122.49","13990.00","9793.00","209.99","121.48","399.99","233.33","179.99","126.00","22000","15400","179.99","119.99","179.99","126.00","679.99","453.33","679.90","475.93","2195.00","1229.20","258.98","169.43","209.99","120.49","219.99","128.33","209.99","122.49","249.99","174.99","179.99","126.00","179.99","126.00","180.00","116.99","179.99","126.00","229000","145727","119900","83930","179.99","126.00","1198.00","821.92","679900.00","399941.18","179.99","126.00","69990.00","48993.00","5500.00","3850.00","209.99","123.52","4790.00","2771.07","179.99","126.00","1249.99","741.52","209.99","123.52","5990","3874","399900.00","279930.00","1549.00","867.44","209.99","121.48","209.99","125.64","209.99","121.48","179.99","126.00","179.99","126.00","179.99","126.00","179.99","126.00","219.99","128.33","164.99","115.49","179.99","126.00","179.99","126.00","179.99","126.00","209.99","122.49","2999.99","2099.99","179.99","121.97","219.99","133.91","209.99","124.57","179.99","126.00","3499.00","2449.30","749.90","495.22","209.99","121.48","3999000","2799300","64900.00","45430.00","179.99","126.00","209.99","121.48","179.99","126.00","1890.00","1058.40","209.99","118.54","179.99","126.00","309.99","188.69","209.99","122.49","179.99","126.00","179.99","104.99","179.99","126.00","209.99","118.54","179.99","126.00","179.99","126.00","209.99","124.57","599.90","419.93","8990.00","6293.00","27900.00","19530.00","849.99","483.73" +Tier 71,"1488.00","1041.60","219.99","125.20","189.99","133.00","189.99","133.00","1599.99","895.99","69990","38577","699.99","489.99","2799000","1959300","219.99","125.20","679.90","475.93","699.99","466.66","189.99","133.00","14900.00","8838.98","2899.99","1765.21","189.99","133.00","235.59","133.00","227.99","133.00","219.99","126.22","229.99","134.16","189.99","133.00","189.99","133.00","219.99","128.33","299.99","190.90","949.99","558.82","219.99","131.62","229.99","137.02","219.99","128.33","14490.00","10143.00","219.99","127.27","409.99","239.16","189.99","133.00","23000","16100","189.99","126.66","189.99","133.00","699.99","466.66","699.90","489.93","2295.00","1285.20","268.98","175.97","219.99","126.22","229.99","134.16","219.99","128.33","259.99","181.99","189.99","133.00","189.99","133.00","190.00","123.49","189.99","133.00","239000","152091","124900","87430","189.99","133.00","1248.00","856.22","699900.00","411705.89","189.99","133.00","74990.00","52493.00","5700.00","3990.00","219.99","129.41","4990.00","2886.78","189.99","133.00","1299.99","771.18","219.99","129.41","6290","4068","429900.00","300930.00","1599.00","895.44","219.99","127.27","219.99","131.62","219.99","127.27","189.99","133.00","189.99","133.00","189.99","133.00","189.99","133.00","229.99","134.16","169.99","118.99","189.99","133.00","189.99","133.00","189.99","133.00","219.99","128.33","3199.99","2239.99","189.99","128.74","229.99","139.99","219.99","130.50","189.99","133.00","3699.00","2589.30","779.90","515.03","219.99","127.27","4299000","3009300","69900.00","48930.00","189.99","133.00","219.99","127.27","189.99","133.00","1990.00","1114.40","219.99","124.19","189.99","133.00","329.99","200.86","219.99","128.33","189.99","133.00","189.99","110.83","189.99","133.00","219.99","124.19","189.99","133.00","189.99","133.00","219.99","130.50","629.90","440.93","9490.00","6643.00","29900.00","20930.00","899.99","512.19" +Tier 72,"1588.00","1111.60","229.99","130.89","199.99","140.00","199.99","140.00","1699.99","951.99","72990","40231","749.99","524.99","2999000","2099300","229.99","130.89","699.90","489.93","749.99","499.99","199.99","140.00","15500.00","9194.92","2999.99","1826.08","199.99","140.00","247.99","140.00","239.99","140.00","229.99","131.96","239.99","139.99","199.99","140.00","199.99","140.00","229.99","134.16","319.99","203.63","999.99","588.23","229.99","137.60","239.99","142.97","229.99","134.16","14990.00","10493.00","229.99","133.05","429.99","250.83","199.99","140.00","24000","16800","199.99","133.33","199.99","140.00","749.99","499.99","749.90","524.93","2395.00","1341.20","288.98","189.05","229.99","131.96","239.99","139.99","229.99","134.16","279.99","195.99","199.99","140.00","199.99","140.00","200.00","129.99","199.99","140.00","249000","158455","129900","90930","199.99","140.00","1298.00","890.52","749900.00","441117.65","199.99","140.00","77990.00","54593.00","5900.00","4130.00","229.99","135.29","5290.00","3060.33","199.99","140.00","1349.99","800.84","229.99","135.29","6590","4262","449900.00","314930.00","1699.00","951.44","229.99","133.05","229.99","137.60","229.99","133.05","199.99","140.00","199.99","140.00","199.99","140.00","199.99","140.00","239.99","139.99","179.99","125.99","199.99","140.00","199.99","140.00","199.99","140.00","229.99","134.16","3299.99","2309.99","199.99","135.52","239.99","146.08","229.99","136.43","199.99","140.00","3799.00","2659.30","799.90","528.24","229.99","133.05","4499000","3149300","72900.00","51030.00","199.99","140.00","229.99","133.05","199.99","140.00","2190.00","1226.40","229.99","129.83","199.99","140.00","349.99","213.04","229.99","134.16","199.99","140.00","199.99","116.66","199.99","140.00","229.99","129.83","199.99","140.00","199.99","140.00","229.99","136.43","649.90","454.93","9990.00","6993.00","31900.00","22330.00","949.99","540.64" +Tier 73,"1648.00","1153.60","239.99","136.58","209.99","147.00","209.99","147.00","1799.99","1007.99","74990","41333","779.99","545.99","3099000","2169300","239.99","136.58","739.90","517.93","779.99","519.99","209.99","147.00","15900.00","9432.20","3199.99","1947.82","209.99","147.00","260.39","147.00","251.99","147.00","239.99","137.70","249.99","145.83","209.99","147.00","209.99","147.00","239.99","139.99","329.99","209.99","1049.99","617.64","239.99","143.58","249.99","148.93","239.99","139.99","15990.00","11193.00","239.99","138.84","449.99","262.49","209.99","147.00","25400","17780","209.99","139.99","209.99","147.00","779.99","519.99","799.90","559.93","2495.00","1397.20","298.98","195.59","239.99","137.70","249.99","145.83","239.99","139.99","289.99","202.99","209.99","147.00","209.99","147.00","210.00","136.49","209.99","147.00","259000","164818","134900","94430","209.99","147.00","1398.00","959.13","779900.00","458764.71","209.99","147.00","79990.00","55993.00","6200.00","4340.00","239.99","141.17","5490.00","3176.03","209.99","147.00","1399.99","830.50","239.99","141.17","6890","4456","459900.00","321930.00","1799.00","1007.44","239.99","138.84","239.99","143.58","239.99","138.84","209.99","147.00","209.99","147.00","209.99","147.00","209.99","147.00","249.99","145.83","189.99","132.99","209.99","147.00","209.99","147.00","209.99","147.00","239.99","139.99","3499.99","2449.99","209.99","142.30","249.99","152.17","239.99","142.37","209.99","147.00","3999.00","2799.30","849.90","561.25","239.99","138.84","4799000","3359300","74900.00","52430.00","209.99","147.00","239.99","138.84","209.99","147.00","2290.00","1282.40","239.99","135.48","209.99","147.00","359.99","219.12","239.99","139.99","209.99","147.00","209.99","122.49","209.99","147.00","239.99","135.48","209.99","147.00","209.99","147.00","239.99","142.37","679.90","475.93","10490.00","7343.00","32900.00","23030.00","999.99","569.10" +Tier 74,"1688.00","1181.60","249.99","142.27","219.99","154.00","219.99","154.00","1899.99","1063.99","79990","44089","799.99","559.99","3199000","2239300","249.99","142.27","779.90","545.93","799.99","533.33","219.99","154.00","16900.00","10025.42","3299.99","2008.69","219.99","154.00","272.79","154.00","263.99","154.00","249.99","143.44","259.99","151.66","219.99","154.00","219.99","154.00","249.99","145.83","349.99","222.72","1099.99","647.05","249.99","149.57","259.99","154.89","249.99","145.83","16990.00","11893.00","249.99","144.62","479.99","279.99","219.99","154.00","27400","19180","219.99","146.66","219.99","154.00","799.99","533.33","829.90","580.93","2595.00","1453.20","318.98","208.68","249.99","143.44","259.99","151.66","249.99","145.83","299.99","209.99","219.99","154.00","219.99","154.00","220.00","142.99","219.99","154.00","269000","171182","139900","97930","219.99","154.00","1448.00","993.43","799900.00","470529.42","219.99","154.00","84990.00","59493.00","6500.00","4550.00","249.99","147.05","5790.00","3349.59","219.99","154.00","1499.99","889.82","249.99","147.05","7190","4650","479900.00","335930.00","1899.00","1063.44","249.99","144.62","249.99","149.57","249.99","144.62","219.99","154.00","219.99","154.00","219.99","154.00","219.99","154.00","259.99","151.66","199.99","139.99","219.99","154.00","219.99","154.00","219.99","154.00","249.99","145.83","3699.99","2589.99","219.99","149.07","259.99","158.25","249.99","148.30","219.99","154.00","4199.00","2939.30","899.90","594.27","249.99","144.62","4999000","3499300","79900.00","55930.00","219.99","154.00","249.99","144.62","219.99","154.00","2390.00","1338.40","249.99","141.12","219.99","154.00","379.99","231.30","249.99","145.83","219.99","154.00","219.99","128.33","219.99","154.00","249.99","141.12","219.99","154.00","219.99","154.00","249.99","148.30","699.90","489.93","10990.00","7693.00","34900.00","24430.00","1049.99","597.56" +Tier 75,"1788.00","1251.60","259.99","147.96","229.99","161.00","229.99","161.00","1949.99","1091.99","84990","46845","849.99","594.99","3399000","2379300","259.99","147.96","799.90","559.93","849.99","566.66","229.99","161.00","17900.00","10618.65","3499.99","2130.43","229.99","161.00","285.19","161.00","275.99","161.00","259.99","149.17","279.99","163.33","229.99","161.00","229.99","161.00","259.99","151.66","359.99","229.08","1149.99","676.46","259.99","155.55","279.99","166.80","259.99","151.66","17490.00","12243.00","259.99","150.41","499.99","291.66","229.99","161.00","28400","19880","229.99","153.33","229.99","161.00","849.99","566.66","849.90","594.93","2795.00","1565.20","328.98","215.22","259.99","149.17","279.99","163.33","259.99","151.66","319.99","223.99","229.99","161.00","229.99","161.00","230.00","149.49","229.99","161.00","279000","177545","149900","104930","229.99","161.00","1498.00","1027.74","849900.00","499941.18","229.99","161.00","89990.00","62993.00","6900.00","4830.00","259.99","152.94","5990.00","3465.29","229.99","161.00","1599.99","949.15","259.99","152.94","7490","4844","499900.00","349930.00","1949.00","1091.44","259.99","150.41","259.99","155.55","259.99","150.41","229.99","161.00","229.99","161.00","229.99","161.00","229.99","161.00","279.99","163.33","209.99","146.99","229.99","161.00","229.99","161.00","229.99","161.00","259.99","151.66","3799.99","2659.99","229.99","155.85","279.99","170.43","259.99","154.23","229.99","161.00","4499.00","3149.30","949.90","627.29","259.99","150.41","5299000","3709300","82900.00","58030.00","229.99","161.00","259.99","150.41","229.99","161.00","2490.00","1394.40","259.99","146.77","229.99","161.00","399.99","243.47","259.99","151.66","229.99","161.00","229.99","134.16","229.99","161.00","259.99","146.77","229.99","161.00","229.99","161.00","259.99","154.23","749.90","524.93","11490.00","8043.00","35900.00","25130.00","1099.99","626.01" +Tier 76,"1848.00","1293.60","269.99","153.65","239.99","168.00","239.99","168.00","1999.99","1119.99","87990","48498","879.99","615.99","3499000","2449300","269.99","153.65","859.90","601.93","879.99","586.66","239.99","168.00","18900.00","11211.87","3799.99","2313.04","239.99","168.00","297.59","168.00","287.99","168.00","269.99","154.91","289.99","169.16","239.99","168.00","239.99","168.00","269.99","157.49","379.99","241.81","1199.99","705.88","269.99","161.53","289.99","172.76","269.99","157.49","17990.00","12593.00","269.99","156.19","529.99","309.16","239.99","168.00","29400","20580","239.99","159.99","239.99","168.00","879.99","586.66","899.90","629.93","2895.00","1621.20","338.98","221.76","269.99","154.91","289.99","169.16","269.99","157.49","329.99","230.99","239.99","168.00","239.99","168.00","240.00","155.99","239.99","168.00","299000","190273","159900","111930","239.99","168.00","1598.00","1096.34","899900.00","529352.95","239.99","168.00","94990.00","66493.00","7200.00","5040.00","269.99","158.82","6290.00","3638.84","239.99","168.00","1699.99","1008.47","269.99","158.82","7790","5038","529900.00","370930.00","1999.00","1119.44","269.99","156.19","269.99","161.53","269.99","156.19","239.99","168.00","239.99","168.00","239.99","168.00","239.99","168.00","289.99","169.16","219.99","153.99","239.99","168.00","239.99","168.00","239.99","168.00","269.99","157.49","3999.99","2799.99","239.99","162.63","289.99","176.52","269.99","160.16","239.99","168.00","4799.00","3359.30","999.90","660.31","269.99","156.19","5499000","3849300","84900.00","59430.00","239.99","168.00","269.99","156.19","239.99","168.00","2590.00","1450.40","269.99","152.41","239.99","168.00","429.99","261.73","269.99","157.49","239.99","168.00","239.99","139.99","239.99","168.00","269.99","152.41","239.99","168.00","239.99","168.00","269.99","160.16","799.90","559.93","11990.00","8393.00","36900.00","25830.00","1149.99","654.47" +Tier 77,"1888.00","1321.60","279.99","159.34","249.99","175.00","249.99","175.00","2299.99","1287.99","89990","49601","899.99","629.99","3599000","2519300","279.99","159.34","899.90","629.93","899.99","599.99","249.99","175.00","19900.00","11805.09","3999.99","2434.78","249.99","175.00","309.99","175.00","299.99","175.00","279.99","160.65","299.99","174.99","249.99","175.00","249.99","175.00","279.99","163.33","399.99","254.54","1249.99","735.29","279.99","167.52","299.99","178.72","279.99","163.33","18990.00","13293.00","279.99","161.98","549.99","320.83","249.99","175.00","30400","21280","249.99","166.66","249.99","175.00","899.99","599.99","999.90","699.93","2995.00","1677.20","348.98","228.30","279.99","160.65","299.99","174.99","279.99","163.33","349.99","244.99","249.99","175.00","249.99","175.00","250.00","162.49","249.99","175.00","309000","196636","169900","118930","249.99","175.00","1648.00","1130.65","949900.00","558764.71","249.99","175.00","99990.00","69993.00","7500.00","5250.00","279.99","164.70","6490.00","3754.55","249.99","175.00","1799.99","1067.79","279.99","164.70","8390","5426","549900.00","384930.00","2099.00","1175.44","279.99","161.98","279.99","167.52","279.99","161.98","249.99","175.00","249.99","175.00","249.99","175.00","249.99","175.00","299.99","174.99","229.99","160.99","249.99","175.00","249.99","175.00","249.99","175.00","279.99","163.33","4199.99","2939.99","249.99","169.40","299.99","182.60","279.99","166.10","249.99","175.00","4999.00","3499.30","1049.90","693.33","279.99","161.98","5799000","4059300","89900.00","62930.00","249.99","175.00","279.99","161.98","249.99","175.00","2690.00","1506.40","279.99","158.06","249.99","175.00","449.99","273.91","279.99","163.33","249.99","175.00","249.99","145.83","249.99","175.00","279.99","158.06","249.99","175.00","249.99","175.00","279.99","166.10","849.90","594.93","12490.00","8743.00","39900.00","27930.00","1199.99","682.92" +Tier 78,"2288.00","1601.60","329.99","187.80","299.99","210.00","299.99","210.00","2499.99","1399.99","99990","55113","1099.99","769.99","4399000","3079300","329.99","187.80","999.90","699.93","1099.99","733.33","299.99","210.00","24900.00","14771.19","4999.99","3043.47","299.99","210.00","371.99","210.00","359.99","210.00","329.99","189.34","349.99","204.16","299.99","210.00","299.99","210.00","329.99","192.49","499.99","318.18","1499.99","882.35","329.99","197.43","349.99","208.50","329.99","192.49","22990.00","16093.00","329.99","190.90","649.99","379.16","299.99","210.00","36800","25760","299.99","199.99","299.99","210.00","1099.99","733.33","1099.90","769.93","3695.00","2069.20","448.98","293.73","329.99","189.34","349.99","204.16","329.99","192.49","399.99","279.99","299.99","210.00","299.99","210.00","300.00","194.99","299.99","210.00","369000","234818","199900","139930","299.99","210.00","1998.00","1370.77","1099900.00","647000.01","299.99","210.00","119990.00","83993.00","8900.00","6230.00","329.99","194.11","7990.00","4622.31","299.99","210.00","1999.99","1186.43","329.99","194.11","9990","6460","649900.00","454930.00","2499.00","1399.44","329.99","190.90","329.99","197.43","329.99","190.90","299.99","210.00","299.99","210.00","299.99","210.00","299.99","210.00","349.99","204.16","269.99","188.99","299.99","210.00","299.99","210.00","299.99","210.00","329.99","192.49","4799.99","3359.99","299.99","203.28","349.99","213.04","329.99","195.76","299.99","210.00","5999.00","4199.30","1299.90","858.42","329.99","190.90","6999000","4899300","99900.00","69930.00","299.99","210.00","329.99","190.90","299.99","210.00","3290.00","1842.40","329.99","186.28","299.99","210.00","499.99","304.34","329.99","192.49","299.99","210.00","299.99","174.99","299.99","210.00","329.99","186.28","299.99","210.00","299.99","210.00","329.99","195.76","999.90","699.93","14990.00","10493.00","44900.00","31430.00","1399.99","796.74" +Tier 79,"2688.00","1881.60","399.99","227.64","349.99","245.00","349.99","245.00","2999.99","1679.99","129990","71648","1299.99","909.99","4999000","3499300","399.99","227.64","1199.90","839.93","1299.99","866.66","349.99","245.00","27900.00","16550.85","5499.99","3347.82","349.99","245.00","433.99","245.00","419.99","245.00","399.99","229.50","399.99","233.33","349.99","245.00","349.99","245.00","399.99","233.33","549.99","349.99","1799.99","1058.82","399.99","239.31","399.99","238.29","399.99","233.33","26990.00","18893.00","399.99","231.40","749.99","437.49","349.99","245.00","43800","30660","349.99","233.33","349.99","245.00","1299.99","866.66","1299.90","909.93","4295.00","2405.20","488.98","319.89","399.99","229.50","399.99","233.33","399.99","233.33","499.99","349.99","349.99","245.00","349.99","245.00","350.00","227.48","349.99","245.00","450000","286364","229900","160930","349.99","245.00","2298.00","1576.60","1299900.00","764647.07","349.99","245.00","139990.00","97993.00","10900.00","7630.00","399.99","235.29","8990.00","5200.83","349.99","245.00","2499.99","1483.04","399.99","235.29","11900","7695","749900.00","524930.00","2999.00","1679.44","399.99","231.40","399.99","239.31","399.99","231.40","349.99","245.00","349.99","245.00","349.99","245.00","349.99","245.00","399.99","233.33","329.99","230.99","349.99","245.00","349.99","245.00","349.99","245.00","399.99","233.33","5499.99","3849.99","349.99","237.17","399.99","243.47","399.99","237.28","349.99","245.00","6999.00","4899.30","1499.90","990.50","399.99","231.40","7999000","5599300","129900.00","90930.00","349.99","245.00","399.99","231.40","349.99","245.00","3790.00","2122.40","399.99","225.80","349.99","245.00","599.99","365.21","399.99","233.33","349.99","245.00","349.99","204.16","349.99","245.00","399.99","225.80","349.99","245.00","349.99","245.00","399.99","237.28","1099.90","769.93","17490.00","12243.00","54900.00","38430.00","1699.99","967.47" +Tier 80,"3088.00","2161.60","449.99","256.09","399.99","280.00","399.99","280.00","3499.99","1959.99","149990","82672","1499.99","1049.99","5899000","4129300","449.99","256.09","1399.90","979.93","1499.99","999.99","399.99","280.00","29900.00","17737.29","5999.99","3652.17","399.99","280.00","495.99","280.00","479.99","280.00","449.99","258.19","449.99","262.49","399.99","280.00","399.99","280.00","449.99","262.49","599.99","381.81","1999.99","1176.46","449.99","269.22","449.99","268.08","449.99","262.49","29990.00","20993.00","449.99","260.32","899.99","524.99","399.99","280.00","49800","34860","399.99","266.66","399.99","280.00","1499.99","999.99","1499.90","1049.93","4995.00","2797.20","588.98","385.31","449.99","258.19","449.99","262.49","449.99","262.49","549.99","384.99","399.99","280.00","399.99","280.00","400.00","259.98","399.99","280.00","490000","311818","269900","188930","399.99","280.00","2598.00","1782.42","1499900.00","882294.13","399.99","280.00","149990.00","104993.00","11900.00","8330.00","449.99","264.70","9990.00","5779.34","399.99","280.00","2799.99","1661.01","449.99","264.70","12900","8342","899900.00","629930.00","3499.00","1959.44","449.99","260.32","449.99","269.22","449.99","260.32","399.99","280.00","399.99","280.00","399.99","280.00","399.99","280.00","449.99","262.49","349.99","244.99","399.99","280.00","399.99","280.00","399.99","280.00","449.99","262.49","6499.99","4549.99","399.99","271.05","449.99","273.91","449.99","266.94","399.99","280.00","7999.00","5599.30","1699.90","1122.58","449.99","260.32","8999000","6299300","139900.00","97930.00","399.99","280.00","449.99","260.32","399.99","280.00","4290.00","2402.40","449.99","254.03","399.99","280.00","699.99","426.08","449.99","262.49","399.99","280.00","399.99","233.33","399.99","280.00","449.99","254.03","399.99","280.00","399.99","280.00","449.99","266.94","1299.90","909.93","19990.00","13993.00","59900.00","41930.00","1899.99","1081.30" +Tier 81,"3488.00","2441.60","499.99","284.55","449.99","315.00","449.99","315.00","3999.99","2239.99","169990","93695","1599.99","1119.99","6599000","4619300","499.99","284.55","1599.90","1119.93","1599.99","1066.66","449.99","315.00","34900.00","20703.39","6999.99","4260.86","449.99","315.00","557.99","315.00","539.99","315.00","499.99","286.88","499.99","291.66","449.99","315.00","449.99","315.00","499.99","291.66","699.99","445.45","2299.99","1352.94","499.99","299.14","499.99","297.87","499.99","291.66","34990.00","24493.00","499.99","289.25","999.99","583.33","449.99","315.00","55800","39060","449.99","299.99","449.99","315.00","1599.99","1066.66","1699.90","1189.93","5495.00","3077.20","648.98","424.57","499.99","286.88","499.99","291.66","499.99","291.66","599.99","419.99","449.99","315.00","449.99","315.00","450.00","292.48","449.99","315.00","550000","350000","299900","209930","449.99","315.00","2998.00","2056.85","1699900.00","999941.19","449.99","315.00","179990.00","125993.00","13900.00","9730.00","499.99","294.11","11990.00","6936.36","449.99","315.00","2999.99","1779.66","499.99","294.11","14900","9635","999900.00","699930.00","3999.00","2239.44","499.99","289.25","499.99","299.14","499.99","289.25","449.99","315.00","449.99","315.00","449.99","315.00","449.99","315.00","499.99","291.66","399.99","279.99","449.99","315.00","449.99","315.00","449.99","315.00","499.99","291.66","7499.99","5249.99","449.99","304.93","499.99","304.34","499.99","296.60","449.99","315.00","8999.00","6299.30","1799.90","1188.61","499.99","289.25","9999000","6999300","149900.00","104930.00","449.99","315.00","499.99","289.25","449.99","315.00","4790.00","2682.40","499.99","282.25","449.99","315.00","799.99","486.95","499.99","291.66","449.99","315.00","449.99","262.49","449.99","315.00","499.99","282.25","449.99","315.00","449.99","315.00","499.99","296.60","1499.90","1049.93","22490.00","15743.00","69900.00","48930.00","1999.99","1138.21" +Tier 82,"3888.00","2721.60","599.99","341.46","499.99","350.00","499.99","350.00","4499.99","2519.99","179990","99207","1799.99","1259.99","7399000","5179300","599.99","341.46","1799.90","1259.93","1799.99","1199.99","499.99","350.00","39900.00","23669.49","7999.99","4869.56","499.99","350.00","619.99","350.00","599.99","350.00","599.99","344.26","599.99","349.99","499.99","350.00","499.99","350.00","599.99","349.99","799.99","509.08","2499.99","1470.58","599.99","358.97","599.99","357.44","599.99","349.99","37990.00","26593.00","599.99","347.10","1099.99","641.66","499.99","350.00","59800","41860","499.99","333.33","499.99","350.00","1799.99","1199.99","1999.90","1399.93","5995.00","3357.20","688.98","450.73","599.99","344.26","599.99","349.99","599.99","349.99","699.99","489.99","499.99","350.00","499.99","350.00","500.00","324.98","499.99","350.00","590000","375455","349900","244930","499.99","350.00","3298.00","2262.67","1899900.00","1117588.25","499.99","350.00","199990.00","139993.00","14900.00","10430.00","599.99","352.94","13990.00","8093.39","499.99","350.00","3499.99","2076.27","599.99","352.94","16900","10929","1099900.00","769930.00","4499.00","2519.44","599.99","347.10","599.99","358.97","599.99","347.10","499.99","350.00","499.99","350.00","499.99","350.00","499.99","350.00","599.99","349.99","449.99","314.99","499.99","350.00","499.99","350.00","499.99","350.00","599.99","349.99","8499.99","5949.99","499.99","338.81","599.99","365.21","599.99","355.93","499.99","350.00","9999.00","6999.30","1999.90","1320.69","599.99","347.10","10999000","7699300","199900.00","139930.00","499.99","350.00","599.99","347.10","499.99","350.00","5490.00","3074.40","599.99","338.70","499.99","350.00","899.99","547.82","599.99","349.99","499.99","350.00","499.99","291.66","499.99","350.00","599.99","338.70","499.99","350.00","499.99","350.00","599.99","355.93","1699.90","1189.93","24990.00","17493.00","79900.00","55930.00","2299.99","1308.94" +Tier 83,"4488.00","3141.60","699.99","398.37","599.99","420.00","599.99","420.00","4999.99","2799.99","229990","126766","2199.99","1539.99","8999000","6299300","699.99","398.37","1999.90","1399.93","2199.99","1466.66","599.99","420.00","44900.00","26635.60","9999.99","6086.95","599.99","420.00","743.99","420.00","719.99","420.00","699.99","401.63","699.99","408.33","599.99","420.00","599.99","420.00","699.99","408.33","899.99","572.72","2999.99","1764.70","699.99","418.80","699.99","417.02","699.99","408.33","44990.00","31493.00","699.99","404.95","1299.99","758.33","599.99","420.00","74800","52360","599.99","399.99","599.99","420.00","2199.99","1466.66","2299.90","1609.93","7495.00","4197.20","888.98","581.58","699.99","401.63","699.99","408.33","699.99","408.33","849.99","594.99","599.99","420.00","599.99","420.00","600.00","389.97","599.99","420.00","750000","477273","399900","279930","599.99","420.00","3998.00","2742.92","2299900.00","1352882.37","599.99","420.00","229990.00","160993.00","17900.00","12530.00","699.99","411.76","14990.00","8671.90","599.99","420.00","3999.99","2372.88","699.99","411.76","19900","12869","1299000.00","909300.00","4999.00","2799.44","699.99","404.95","699.99","418.80","699.99","404.95","599.99","420.00","599.99","420.00","599.99","420.00","599.99","420.00","699.99","408.33","499.99","349.99","599.99","420.00","599.99","420.00","599.99","420.00","699.99","408.33","9499.99","6649.99","599.99","406.58","699.99","426.08","699.99","415.25","599.99","420.00","10999.00","7699.30","2499.90","1650.88","699.99","404.95","12999000","9099300","229900.00","160930.00","599.99","420.00","699.99","404.95","599.99","420.00","6490.00","3634.40","699.99","395.16","599.99","420.00","999.99","608.69","699.99","408.33","599.99","420.00","599.99","349.99","599.99","420.00","699.99","395.16","599.99","420.00","599.99","420.00","699.99","415.25","1999.90","1399.93","29990.00","20993.00","89900.00","62930.00","2799.99","1593.49" +Tier 84,"4988.00","3491.60","799.99","455.28","699.99","490.00","699.99","490.00","5999.99","3359.99","249990","137790","2499.99","1749.99","9999000","6999300","799.99","455.28","2399.90","1679.93","2499.99","1666.66","699.99","490.00","54900.00","32567.80","10999.99","6695.65","699.99","490.00","867.99","490.00","839.99","490.00","799.99","459.01","799.99","466.66","699.99","490.00","699.99","490.00","799.99","466.66","1099.99","699.99","3499.99","2058.82","799.99","478.63","799.99","476.59","799.99","466.66","54990.00","38493.00","799.99","462.80","1499.99","874.99","699.99","490.00","89800","62860","699.99","466.66","699.99","490.00","2499.99","1666.66","2499.90","1749.93","8495.00","4757.20","988.98","647.00","799.99","459.01","799.99","466.66","799.99","466.66","999.99","699.99","699.99","490.00","699.99","490.00","700.00","454.97","699.99","490.00","890000","566364","449900","314930","699.99","490.00","4498.00","3085.96","2499900.00","1470529.43","699.99","490.00","279990.00","195993.00","20900.00","14630.00","799.99","470.58","17990.00","10407.44","699.99","490.00","4999.99","2966.10","799.99","470.58","22900","14809","1499000.00","1049300.00","5999.00","3359.44","799.99","462.80","799.99","478.63","799.99","462.80","699.99","490.00","699.99","490.00","699.99","490.00","699.99","490.00","799.99","466.66","599.99","419.99","699.99","490.00","699.99","490.00","699.99","490.00","799.99","466.66","11999.99","8399.99","699.99","474.34","799.99","486.95","799.99","474.57","699.99","490.00","12999.00","9099.30","2999.90","1981.07","799.99","462.80","14999000","10499300","249900.00","174930.00","699.99","490.00","799.99","462.80","699.99","490.00","7490.00","4194.40","799.99","451.61","699.99","490.00","1199.99","730.43","799.99","466.66","699.99","490.00","699.99","408.33","699.99","490.00","799.99","451.61","699.99","490.00","699.99","490.00","799.99","474.57","2299.90","1609.93","34990.00","24493.00","99900.00","69930.00","3299.99","1878.04" +Tier 85,"5988.00","4191.60","899.99","512.19","799.99","560.00","799.99","560.00","6999.99","3919.99","299990","165349","2999.99","2099.99","11999000","8399300","899.99","512.19","2999.90","2099.93","2999.99","1999.99","799.99","560.00","59900.00","35533.90","12999.99","7913.04","799.99","560.00","991.99","560.00","959.99","560.00","899.99","516.39","999.99","583.33","799.99","560.00","799.99","560.00","899.99","524.99","1249.99","795.45","3999.99","2352.94","899.99","538.46","999.99","595.74","899.99","524.99","59990.00","41993.00","899.99","520.66","1799.99","1049.99","799.99","560.00","99800","69860","799.99","533.33","799.99","560.00","2999.99","1999.99","2999.90","2099.93","9495.00","5317.20","1088.98","712.42","899.99","516.39","999.99","583.33","899.99","524.99","1099.99","769.99","799.99","560.00","799.99","560.00","800.00","519.96","799.99","560.00","990000","630000","549900","384930","799.99","560.00","4998.00","3428.99","2999900.00","1764647.08","799.99","560.00","299990.00","209993.00","24900.00","17430.00","899.99","529.41","19990.00","11564.46","799.99","560.00","5499.99","3262.71","899.99","529.41","26900","17395","1799000.00","1259300.00","6999.00","3919.44","899.99","520.66","899.99","538.46","899.99","520.66","799.99","560.00","799.99","560.00","799.99","560.00","799.99","560.00","999.99","583.33","699.99","489.99","799.99","560.00","799.99","560.00","799.99","560.00","899.99","524.99","12999.99","9099.99","799.99","542.10","999.99","608.69","899.99","533.89","799.99","560.00","14999.00","10499.30","3499.90","2311.25","899.99","520.66","17999000","12599300","279900.00","195930.00","799.99","560.00","899.99","520.66","799.99","560.00","8490.00","4754.40","899.99","508.06","799.99","560.00","1399.99","852.17","899.99","524.99","799.99","560.00","799.99","466.66","799.99","560.00","899.99","508.06","799.99","560.00","799.99","560.00","899.99","533.89","2499.90","1749.93","39990.00","27993.00","129900.00","90930.00","3799.99","2162.60" +Tier 86,"6988.00","4891.60","999.99","569.10","899.99","630.00","899.99","630.00","7999.99","4479.99","329990","181884","3299.99","2309.99","12999000","9099300","999.99","569.10","3199.90","2239.93","3299.99","2199.99","899.99","630.00","69900.00","41466.11","13999.99","8521.73","899.99","630.00","1115.99","630.00","1079.99","630.00","999.99","573.76","1099.99","641.66","899.99","630.00","899.99","630.00","999.99","583.33","1399.99","890.90","4499.99","2647.05","999.99","598.28","1099.99","655.31","999.99","583.33","69990.00","48993.00","999.99","578.51","1999.99","1166.66","899.99","630.00","109800","76860","899.99","599.99","899.99","630.00","3299.99","2199.99","3299.90","2309.93","10995.00","6157.20","1288.98","843.26","999.99","573.76","1099.99","641.66","999.99","583.33","1199.99","839.99","899.99","630.00","899.99","630.00","900.00","584.96","899.99","630.00","1090000","693636","599900","419930","899.99","630.00","5898.00","4046.46","3299900.00","1941117.67","899.99","630.00","349990.00","244993.00","27900.00","19530.00","999.99","588.23","22990.00","13300.00","899.99","630.00","5999.99","3559.32","999.99","588.23","29900","19335","1999000.00","1399300.00","7999.00","4479.44","999.99","578.51","999.99","598.28","999.99","578.51","899.99","630.00","899.99","630.00","899.99","630.00","899.99","630.00","1099.99","641.66","799.99","559.99","899.99","630.00","899.99","630.00","899.99","630.00","999.99","583.33","14999.99","10499.99","899.99","609.87","1099.99","669.56","999.99","593.21","899.99","630.00","16999.00","11899.30","3799.90","2509.37","999.99","578.51","19999000","13999300","299900.00","209930.00","899.99","630.00","999.99","578.51","899.99","630.00","9490.00","5314.40","999.99","564.51","899.99","630.00","1499.99","913.04","999.99","583.33","899.99","630.00","899.99","524.99","899.99","630.00","999.99","564.51","899.99","630.00","899.99","630.00","999.99","593.21","2999.90","2099.93","44990.00","31493.00","139900.00","97930.00","4299.99","2447.15" +Tier 87,"7888.00","5521.60","1099.99","626.01","999.99","700.00","999.99","700.00","8999.99","5039.99","349990","192908","3699.99","2589.99","14999000","10499300","1099.99","626.01","3599.90","2519.93","3699.99","2466.66","999.99","700.00","79900.00","47398.31","14999.99","9130.43","999.99","700.00","1239.99","700.00","1199.99","700.00","1099.99","631.14","1199.99","699.99","999.99","700.00","999.99","700.00","1099.99","641.66","1599.99","1018.18","4999.99","2941.17","1099.99","658.11","1199.99","714.89","1099.99","641.66","74990.00","52493.00","1099.99","636.36","2199.99","1283.33","999.99","700.00","119800","83860","999.99","666.66","999.99","700.00","3699.99","2466.66","3799.90","2659.93","11995.00","6717.20","1488.98","974.10","1099.99","631.14","1199.99","699.99","1099.99","641.66","1399.99","979.99","999.99","700.00","999.99","700.00","1000.00","649.95","999.99","700.00","1190000","757273","649900","454930","999.99","700.00","6498.00","4458.10","3799900.00","2235235.32","999.99","700.00","399990.00","279993.00","31900.00","22330.00","1099.99","647.05","24990.00","14457.02","999.99","700.00","6999.99","4152.54","1099.99","647.05","32900","21275","2199000.00","1539300.00","8999.00","5039.44","1099.99","636.36","1099.99","658.11","1099.99","636.36","999.99","700.00","999.99","700.00","999.99","700.00","999.99","700.00","1199.99","699.99","899.99","629.99","999.99","700.00","999.99","700.00","999.99","700.00","1099.99","641.66","16999.99","11899.99","999.99","677.63","1199.99","730.43","1099.99","652.54","999.99","700.00","18999.00","13299.30","3999.90","2641.44","1099.99","636.36","21999000","15399300","349900.00","244930.00","999.99","700.00","1099.99","636.36","999.99","700.00","10990.00","6154.40","1099.99","620.96","999.99","700.00","1699.99","1034.78","1099.99","641.66","999.99","700.00","999.99","583.33","999.99","700.00","1099.99","620.96","999.99","700.00","999.99","700.00","1099.99","652.54","3299.90","2309.93","49990.00","34993.00","149900.00","104930.00","4799.99","2731.70" +Alternate Tier A,"8.00","5.60","0.49","0.28","0.99","0.70","0.99","0.70","2.99","1.67","99","55","3.69","2.58","3000","2100","0.49","0.28","1.90","1.33","3.69","2.46","0.99","0.70","9.00","5.34","3.99","2.43","0.99","0.70","1.23","0.70","1.19","0.70","0.49","0.28","0.99","0.58","0.99","0.70","0.99","0.70","0.49","0.29","0.99","0.63","1.99","1.17","0.49","0.29","0.99","0.59","0.49","0.29","15.00","10.50","0.49","0.28","0.49","0.29","0.99","0.70","120","84","0.99","0.66","0.99","0.70","3.69","2.46","0.90","0.63","10.00","5.60","1.48","0.97","0.49","0.28","0.99","0.58","0.49","0.29","0.99","0.69","0.99","0.70","0.99","0.70","1.00","0.65","0.99","0.70","500","318","290","203","0.99","0.70","1.00","0.69","900.00","529.41","0.99","0.70","99.00","69.30","9.00","6.30","0.49","0.29","9.00","5.21","0.99","0.70","1.99","1.18","0.49","0.29","33","21","500.00","350.00","5.00","2.80","0.49","0.28","0.49","0.29","0.49","0.28","0.99","0.70","0.99","0.70","0.99","0.70","0.99","0.70","0.99","0.58","0.49","0.34","0.99","0.70","0.99","0.70","0.99","0.70","0.49","0.29","4.99","3.49","0.99","0.67","0.99","0.60","0.49","0.29","0.99","0.70","5.00","3.50","0.90","0.59","0.49","0.28","5000","3500","150.00","105.00","0.99","0.70","0.49","0.28","0.99","0.70","11.00","6.16","0.49","0.28","0.99","0.70","0.99","0.60","0.49","0.29","0.99","0.70","0.49","0.29","0.99","0.70","0.49","0.28","0.99","0.70","0.99","0.70","0.49","0.29","0.90","0.63","19.00","13.30","30.00","21.00","1.99","1.13" +Alternate Tier B,"8.00","5.60","0.99","0.56","0.99","0.70","0.99","0.70","4.99","2.79","199","110","3.69","2.58","5000","3500","0.99","0.56","1.90","1.33","3.69","2.46","0.99","0.70","29.00","17.20","6.99","4.25","0.99","0.70","1.23","0.70","1.19","0.70","0.99","0.57","0.99","0.58","0.99","0.70","0.99","0.70","0.99","0.58","0.99","0.63","2.99","1.76","0.99","0.59","0.99","0.59","0.99","0.58","29.00","20.30","0.99","0.57","0.99","0.58","0.99","0.70","120","84","0.99","0.66","0.99","0.70","3.69","2.46","1.90","1.33","10.00","5.60","1.48","0.97","0.99","0.57","0.99","0.58","0.99","0.58","0.99","0.69","0.99","0.70","0.99","0.70","1.00","0.65","0.99","0.70","900","573","490","343","0.99","0.70","3.00","2.06","1900.00","1117.65","0.99","0.70","199.00","139.30","19.00","13.30","0.99","0.58","19.00","10.99","0.99","0.70","2.99","1.77","0.99","0.58","33","21","1200.00","840.00","5.00","2.80","0.99","0.57","0.99","0.59","0.99","0.57","0.99","0.70","0.99","0.70","0.99","0.70","0.99","0.70","0.99","0.58","0.89","0.62","0.99","0.70","0.99","0.70","0.99","0.70","0.99","0.58","9.99","6.99","0.99","0.67","0.99","0.60","0.99","0.59","0.99","0.70","9.00","6.30","1.90","1.25","0.99","0.57","9000","6300","200.00","140.00","0.99","0.70","0.99","0.57","0.99","0.70","11.00","6.16","0.99","0.56","0.99","0.70","0.99","0.60","0.99","0.58","0.99","0.70","0.79","0.46","0.99","0.70","0.99","0.56","0.99","0.70","0.99","0.70","0.99","0.59","1.90","1.33","29.00","20.30","50.00","35.00","2.99","1.70" +Alternate Tier 1,"8.00","5.60","1.99","1.13","0.99","0.70","0.99","0.70","8.99","5.03","349","192","3.99","2.79","15000","10500","1.99","1.13","3.50","2.45","3.99","2.66","0.99","0.70","79.00","46.86","19.99","12.17","0.99","0.70","1.23","0.70","1.19","0.70","1.99","1.14","1.19","0.69","0.99","0.70","0.99","0.70","1.99","1.16","1.99","1.27","4.99","2.94","1.99","1.19","1.19","0.71","1.99","1.16","75.00","52.50","1.99","1.15","1.99","1.16","0.99","0.70","150","105","0.99","0.66","0.99","0.70","3.99","2.66","3.90","2.73","12.00","6.72","1.48","0.97","1.99","1.14","1.19","0.69","1.99","1.16","1.49","1.04","0.99","0.70","0.99","0.70","1.00","0.65","0.99","0.70","1200","764","690","483","0.99","0.70","8.00","5.49","3900.00","2294.12","0.99","0.70","399.00","279.30","29.00","20.30","1.99","1.17","25.00","14.46","0.99","0.70","6.99","4.15","1.99","1.17","33","21","2200.00","1540.00","9.00","5.04","1.99","1.15","1.99","1.19","1.99","1.15","0.99","0.70","0.99","0.70","0.99","0.70","0.99","0.70","1.19","0.69","0.99","0.69","0.99","0.70","0.99","0.70","0.99","0.70","1.99","1.16","16.99","11.89","0.99","0.67","1.19","0.72","1.99","1.18","0.99","0.70","19.00","13.30","4.90","3.24","1.99","1.15","25000","17500","350.00","245.00","0.99","0.70","1.99","1.15","0.99","0.70","11.00","6.16","1.99","1.12","0.99","0.70","1.99","1.21","1.99","1.16","0.99","0.70","0.99","0.58","0.99","0.70","1.99","1.12","0.99","0.70","0.99","0.70","1.99","1.18","3.50","2.45","49.00","34.30","150.00","105.00","4.99","2.84" +Alternate Tier 2,"18.00","12.60","2.99","1.70","1.99","1.40","1.99","1.40","16.99","9.51","699","385","7.99","5.59","29000","20300","2.99","1.70","6.90","4.83","7.99","5.33","1.99","1.40","159.00","94.32","39.99","24.34","1.99","1.40","2.47","1.40","2.39","1.40","2.99","1.72","2.49","1.45","1.99","1.40","1.99","1.40","2.99","1.74","3.99","2.54","9.99","5.88","2.99","1.79","2.49","1.48","2.99","1.74","169.00","118.30","2.99","1.73","4.49","2.62","1.99","1.40","250","175","1.99","1.33","1.99","1.40","7.99","5.33","7.90","5.53","25.00","14.00","2.98","1.95","2.99","1.72","2.49","1.45","2.99","1.74","2.99","2.09","1.99","1.40","1.99","1.40","2.00","1.30","1.99","1.40","2500","1591","1300","910","1.99","1.40","12.00","8.23","7900.00","4647.06","1.99","1.40","799.00","559.30","59.00","41.30","2.99","1.76","49.00","28.35","1.99","1.40","12.99","7.71","2.99","1.76","70","45","4500.00","3150.00","19.00","10.64","2.99","1.73","2.99","1.79","2.99","1.73","1.99","1.40","1.99","1.40","1.99","1.40","1.99","1.40","2.49","1.45","1.99","1.39","1.99","1.40","1.99","1.40","1.99","1.40","2.99","1.74","32.99","23.09","1.99","1.35","2.49","1.52","2.99","1.77","1.99","1.40","39.00","27.30","9.90","6.54","2.99","1.73","45000","31500","700.00","490.00","1.99","1.40","2.99","1.73","1.99","1.40","22.00","12.32","2.99","1.69","1.99","1.40","3.99","2.43","2.99","1.74","1.99","1.40","1.99","1.16","1.99","1.40","2.99","1.69","1.99","1.40","1.99","1.40","2.99","1.77","6.90","4.83","99.00","69.30","300.00","210.00","8.99","5.12" +Alternate Tier 3,"23.00","16.10","3.99","2.27","2.99","2.10","2.99","2.10","24.99","13.99","1090","601","10.99","7.69","45000","31500","3.99","2.27","10.90","7.63","10.99","7.33","2.99","2.10","249.00","147.71","49.99","30.43","2.99","2.10","3.71","2.10","3.59","2.10","3.99","2.29","3.49","2.04","2.99","2.10","2.99","2.10","3.99","2.33","4.99","3.18","14.99","8.82","3.99","2.39","3.49","2.08","3.99","2.33","249.00","174.30","3.99","2.31","6.49","3.79","2.99","2.10","400","280","2.99","1.99","2.99","2.10","10.99","7.33","10.90","7.63","40.00","22.40","4.48","2.93","3.99","2.29","3.49","2.04","3.99","2.33","3.99","2.79","2.99","2.10","2.99","2.10","3.00","1.95","2.99","2.10","3900","2482","1900","1330","2.99","2.10","18.00","12.35","10900.00","6411.76","2.99","2.10","1190.00","833.00","89.00","62.30","3.99","2.35","79.00","45.70","2.99","2.10","19.99","11.86","3.99","2.35","100","65","6500.00","4550.00","29.00","16.24","3.99","2.31","3.99","2.39","3.99","2.31","2.99","2.10","2.99","2.10","2.99","2.10","2.99","2.10","3.49","2.04","2.99","2.09","2.99","2.10","2.99","2.10","2.99","2.10","3.99","2.33","49.99","34.99","2.99","2.03","3.49","2.12","3.99","2.37","2.99","2.10","59.00","41.30","12.90","8.52","3.99","2.31","69000","48300","1100.00","770.00","2.99","2.10","3.99","2.31","2.99","2.10","33.00","18.48","3.99","2.25","2.99","2.10","4.99","3.04","3.99","2.33","2.99","2.10","2.99","1.74","2.99","2.10","3.99","2.25","2.99","2.10","2.99","2.10","3.99","2.37","9.90","6.93","149.00","104.30","450.00","315.00","13.99","7.96" +Alternate Tier 4,"28.00","19.60","4.99","2.84","3.99","2.80","3.99","2.80","34.99","19.59","1490","821","14.99","10.49","59000","41300","4.99","2.84","13.90","9.73","14.99","9.99","3.99","2.80","299.00","177.37","69.99","42.60","3.99","2.80","4.95","2.80","4.79","2.80","4.99","2.86","4.99","2.91","3.99","2.80","3.99","2.80","4.99","2.91","6.99","4.45","19.99","11.76","4.99","2.99","4.99","2.97","4.99","2.91","299.00","209.30","4.99","2.89","8.49","4.95","3.99","2.80","500","350","3.99","2.66","3.99","2.80","14.99","9.99","14.90","10.43","55.00","30.80","5.98","3.91","4.99","2.86","4.99","2.91","4.99","2.91","5.49","3.84","3.99","2.80","3.99","2.80","4.00","2.60","3.99","2.80","4900","3118","2500","1750","3.99","2.80","28.00","19.21","14900.00","8764.71","3.99","2.80","1590.00","1113.00","119.00","83.30","4.99","2.94","99.00","57.27","3.99","2.80","26.99","16.01","4.99","2.94","130","84","8900.00","6230.00","39.00","21.84","4.99","2.89","4.99","2.99","4.99","2.89","3.99","2.80","3.99","2.80","3.99","2.80","3.99","2.80","4.99","2.91","3.99","2.79","3.99","2.80","3.99","2.80","3.99","2.80","4.99","2.91","64.99","45.49","3.99","2.70","4.99","3.04","4.99","2.96","3.99","2.80","79.00","55.30","16.90","11.16","4.99","2.89","99000","69300","1400.00","980.00","3.99","2.80","4.99","2.89","3.99","2.80","44.00","24.64","4.99","2.82","3.99","2.80","6.99","4.25","4.99","2.91","3.99","2.80","3.99","2.33","3.99","2.80","4.99","2.82","3.99","2.80","3.99","2.80","4.99","2.96","12.90","9.03","199.00","139.30","600.00","420.00","19.99","11.38" +Alternate Tier 5,"38.00","26.60","5.99","3.41","4.99","3.50","4.99","3.50","42.99","24.07","1790","987","19.99","13.99","75000","52500","5.99","3.41","17.90","12.53","19.99","13.33","4.99","3.50","399.00","236.69","79.99","48.69","4.99","3.50","6.19","3.50","5.99","3.50","5.99","3.44","5.99","3.49","4.99","3.50","4.99","3.50","5.99","3.49","8.99","5.72","24.99","14.70","5.99","3.58","5.99","3.57","5.99","3.49","399.00","279.30","5.99","3.47","10.99","6.41","4.99","3.50","600","420","4.99","3.33","4.99","3.50","19.99","13.33","18.90","13.23","65.00","36.40","6.98","4.57","5.99","3.44","5.99","3.49","5.99","3.49","6.99","4.89","4.99","3.50","4.99","3.50","5.00","3.25","4.99","3.50","5900","3755","3500","2450","4.99","3.50","30.00","20.58","18900.00","11117.65","4.99","3.50","1990.00","1393.00","149.00","104.30","5.99","3.52","129.00","74.63","4.99","3.50","34.99","20.76","5.99","3.52","170","110","10900.00","7630.00","45.00","25.20","5.99","3.47","5.99","3.58","5.99","3.47","4.99","3.50","4.99","3.50","4.99","3.50","4.99","3.50","5.99","3.49","4.99","3.49","4.99","3.50","4.99","3.50","4.99","3.50","5.99","3.49","79.99","55.99","4.99","3.38","5.99","3.65","5.99","3.55","4.99","3.50","99.00","69.30","19.90","13.14","5.99","3.47","109000","76300","1900.00","1330.00","4.99","3.50","5.99","3.47","4.99","3.50","59.00","33.04","5.99","3.38","4.99","3.50","8.99","5.47","5.99","3.49","4.99","3.50","4.99","2.91","4.99","3.50","5.99","3.38","4.99","3.50","4.99","3.50","5.99","3.55","16.90","11.83","249.00","174.30","750.00","525.00","23.99","13.65" diff --git a/README.md b/README.md index 91e39fe..36b2897 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,22 @@ [![License](https://img.shields.io/cocoapods/l/PriceKit.svg?style=flat)](http://cocoapods.org/pods/PriceKit) [![Platform](https://img.shields.io/cocoapods/p/PriceKit.svg?style=flat)](http://cocoapods.org/pods/PriceKit) -## Example +## How To Use + +Get price for a specific tier in specific locale: + +``` +let store = PriceStore() +let priceLocale = Locale(identifier: "en_US") +let price = store?.getPrice(of: .tier1, inPriceLocale: priceLocale) +print(price?.price) +print(price?.priceLocale) +``` To run the example project, clone the repo, and run `pod install` from the Example directory first. +Also, see [SKProduct+Locale.swift](./Example/Extensions/SKProduct+Locale.swift) extension. + ## Requirements ## Installation