diff --git a/.eslintrc.json b/.eslintrc.json
index 8bdf78c1..28c79c54 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -25,7 +25,7 @@
}
],
"no-console": 1,
- "quotes":["error", "single"],
+ "quotes": ["error", "double"],
"func-names": 0,
"space-unary-ops": 2,
"space-in-parens": "error",
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 00000000..a490b614
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,5 @@
+{
+ "githubPullRequests.ignoredPullRequestBranches": [
+ "main"
+ ]
+}
\ No newline at end of file
diff --git a/build/__snowpack__/env.js b/build/__snowpack__/env.js
new file mode 100644
index 00000000..6884ecc2
--- /dev/null
+++ b/build/__snowpack__/env.js
@@ -0,0 +1 @@
+export default { MODE: "production", NODE_ENV: "production", SSR: !1 };
diff --git a/build/cart.html b/build/cart.html
new file mode 100644
index 00000000..bc97d61c
--- /dev/null
+++ b/build/cart.html
@@ -0,0 +1,83 @@
+
+
+
+
+
+ Sleep Outside | Cart
+
+
+
+
+
+
+
+
+
+
+
diff --git a/build/checkout.html b/build/checkout.html
new file mode 100644
index 00000000..d15d562b
--- /dev/null
+++ b/build/checkout.html
@@ -0,0 +1,50 @@
+
+
+
+
+
+ Sleep Outside | Checkout
+
+
+
+
+
+
+ Review & Place your Order
+
+
+
+
+
diff --git a/build/css/style.css b/build/css/style.css
new file mode 100644
index 00000000..ab073322
--- /dev/null
+++ b/build/css/style.css
@@ -0,0 +1,192 @@
+:root {
+ --font-body: Arial, Helvetica, sans-serif;
+ --font-headline: Haettenschweiler, "Arial Narrow Bold", sans-serif;
+ --primary-color: #f0a868;
+ --secondary-color: #525b0f;
+ --tertiary-color: #a4b8c4;
+ --light-grey: #d0d0d0;
+ --dark-grey: #303030;
+ --font-base: 18px;
+ --small-font: 0.8em;
+ --large-font: 1.2em;
+}
+* {
+ box-sizing: border-box;
+}
+body {
+ margin: 0;
+ font-family: var(--font-body);
+ font-size: var(--font-base);
+ color: var(--dark-grey);
+}
+img {
+ max-width: 100%;
+}
+header {
+ display: flex;
+ justify-content: space-between;
+ padding: 0 10px;
+}
+.logo {
+ line-height: 60px;
+ width: 245px;
+ overflow: hidden;
+ display: flex;
+ font-size: 30px;
+ text-align: right;
+ font-family: var(--font-headline);
+}
+.logo img {
+ width: 60px;
+ height: 60px;
+}
+.logo a {
+ text-decoration: none;
+ color: var(--font-body);
+}
+.hero {
+ position: relative;
+}
+.hero .logo {
+ position: absolute;
+ left: calc(50% - 60px);
+ bottom: -10px;
+ background-color: #fff;
+}
+.logo--square {
+ font-size: var(--small-font);
+ width: 110px;
+ height: 80px;
+ flex-direction: column;
+ align-items: flex-end;
+ box-shadow: 1px 1px 4px var(--light-grey);
+ justify-content: center;
+ align-items: center;
+ line-height: 1;
+}
+.logo--square img {
+ width: 90px;
+ height: 90px;
+ margin-top: -1.3em;
+}
+.logo--square > div {
+ margin-top: -1.7em;
+}
+.highlight {
+ color: var(--tertiary-color);
+}
+button {
+ padding: 0.5em 2em;
+ background-color: var(--secondary-color);
+ color: #fff;
+ margin: auto;
+ display: block;
+ border: 0;
+ font-size: var(--large-font);
+}
+.divider {
+ border-bottom: 2px solid var(--primary-color);
+}
+.cart {
+ padding-top: 1em;
+ position: relative;
+ text-align: center;
+}
+.cart svg {
+ width: 25px;
+}
+.cart:hover svg {
+ fill: gray;
+}
+.mission {
+ padding: 0 0.5em;
+ line-height: 1.3;
+ max-width: 600px;
+ margin: auto;
+}
+.products {
+ padding: 0.5em;
+}
+.product-list {
+ display: flex;
+ flex-flow: row wrap;
+ justify-content: space-between;
+ list-style-type: none;
+ padding: 0;
+}
+.product-list a {
+ text-decoration: none;
+ color: var(--dark-grey);
+}
+.product-card {
+ flex: 1 1 45%;
+ margin: 0.25em;
+ padding: 0.5em;
+ border: 1px solid var(--light-grey);
+ max-width: 250px;
+}
+.product-card h2,
+.product-card h3,
+.product-card p {
+ margin: 0.5em 0;
+}
+.card__brand {
+ font-size: var(--small-font);
+}
+.card__name {
+ font-size: 1em;
+}
+.product-detail {
+ padding: 1em;
+ max-width: 500px;
+ margin: auto;
+}
+.product-detail img {
+ width: 100%;
+}
+.cart-card {
+ display: grid;
+ grid-template-columns: 25% auto 15%;
+ font-size: var(--small-font);
+ align-items: center;
+}
+.cart-card__image {
+ grid-row: 1/3;
+ grid-column: 1;
+}
+.cart-card p {
+ margin-top: 0;
+}
+.cart-card .card__name {
+ grid-row: 1;
+ grid-column: 2;
+}
+.cart-card__color {
+ grid-row: 2;
+ grid-column: 2;
+}
+.cart-card__quantity {
+ grid-row: 1;
+ grid-column: 3;
+}
+.cart-card__price {
+ grid-row: 2;
+ grid-column: 3;
+}
+@media screen and (min-width: 500px) {
+ body {
+ max-width: 1080px;
+ margin: auto;
+ }
+ .mission {
+ font-size: 1.2em;
+ }
+ .cart-card {
+ font-size: inherit;
+ grid-template-columns: 150px auto 15%;
+ }
+}
+footer {
+ font-size: var(--small-font);
+ padding: 1em;
+}
diff --git a/build/images/banner-sm.jpg b/build/images/banner-sm.jpg
new file mode 100644
index 00000000..c65f8fa2
Binary files /dev/null and b/build/images/banner-sm.jpg differ
diff --git a/build/images/banner.jpg b/build/images/banner.jpg
new file mode 100644
index 00000000..074730fd
Binary files /dev/null and b/build/images/banner.jpg differ
diff --git a/build/images/logos/marmot-160x100.jpg b/build/images/logos/marmot-160x100.jpg
new file mode 100644
index 00000000..82fce415
Binary files /dev/null and b/build/images/logos/marmot-160x100.jpg differ
diff --git a/build/images/noun_Backpack_2389275.svg b/build/images/noun_Backpack_2389275.svg
new file mode 100644
index 00000000..13044158
--- /dev/null
+++ b/build/images/noun_Backpack_2389275.svg
@@ -0,0 +1 @@
+backpack
\ No newline at end of file
diff --git a/build/images/noun_Backpack_65884.svg b/build/images/noun_Backpack_65884.svg
new file mode 100644
index 00000000..1ae7f4f4
--- /dev/null
+++ b/build/images/noun_Backpack_65884.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/build/images/noun_Tent_2517.svg b/build/images/noun_Tent_2517.svg
new file mode 100644
index 00000000..66edad36
--- /dev/null
+++ b/build/images/noun_Tent_2517.svg
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/build/images/tents/cedar-ridge-rimrock-tent-2-person-3-season-in-rust-clay~p~344yj_01~320.jpg b/build/images/tents/cedar-ridge-rimrock-tent-2-person-3-season-in-rust-clay~p~344yj_01~320.jpg
new file mode 100644
index 00000000..ad93493c
Binary files /dev/null and b/build/images/tents/cedar-ridge-rimrock-tent-2-person-3-season-in-rust-clay~p~344yj_01~320.jpg differ
diff --git a/build/images/tents/marmot-ajax-tent-3-person-3-season-in-pale-pumpkin-terracotta~p~880rr_01~320.jpg b/build/images/tents/marmot-ajax-tent-3-person-3-season-in-pale-pumpkin-terracotta~p~880rr_01~320.jpg
new file mode 100644
index 00000000..4bf019c8
Binary files /dev/null and b/build/images/tents/marmot-ajax-tent-3-person-3-season-in-pale-pumpkin-terracotta~p~880rr_01~320.jpg differ
diff --git a/build/images/tents/the-north-face-alpine-guide-tent-3-person-4-season-in-canary-yellow-high-rise-grey~p~985pr_01~320.jpg b/build/images/tents/the-north-face-alpine-guide-tent-3-person-4-season-in-canary-yellow-high-rise-grey~p~985pr_01~320.jpg
new file mode 100644
index 00000000..894c6057
Binary files /dev/null and b/build/images/tents/the-north-face-alpine-guide-tent-3-person-4-season-in-canary-yellow-high-rise-grey~p~985pr_01~320.jpg differ
diff --git a/build/images/tents/the-north-face-talus-tent-4-person-3-season-in-golden-oak-saffron-yellow~p~985rf_01~320.jpg b/build/images/tents/the-north-face-talus-tent-4-person-3-season-in-golden-oak-saffron-yellow~p~985rf_01~320.jpg
new file mode 100644
index 00000000..10a3a845
Binary files /dev/null and b/build/images/tents/the-north-face-talus-tent-4-person-3-season-in-golden-oak-saffron-yellow~p~985rf_01~320.jpg differ
diff --git a/build/index.html b/build/index.html
new file mode 100644
index 00000000..1e94de77
--- /dev/null
+++ b/build/index.html
@@ -0,0 +1,116 @@
+
+
+
+
+
+ Sleep Outside | Home
+
+
+
+
+
+
+
+
+
+
SleepOutside
+
+
+
+ We spend too much time these days indoors...sitting usually.
+ No wonder we are a mess!
+
+ What we really need is to get outside...in fact SLEEP outside. Our
+ mission is to provide you with everything you need to do this
+ comfortably at an affordable price.
+
+
+
+
+
+
+
diff --git a/build/js/cart.js b/build/js/cart.js
new file mode 100644
index 00000000..38ddf375
--- /dev/null
+++ b/build/js/cart.js
@@ -0,0 +1,27 @@
+function getLocalStorage(a) {
+ return JSON.parse(localStorage.getItem(a));
+}
+function getCartContents() {
+ let a = "";
+ const r = getLocalStorage("so-cart"),
+ c = r.map((t) => renderCartItem(t));
+ document.querySelector(".product-list").innerHTML = c.join("");
+}
+function renderCartItem(a) {
+ const r = `
+
+
+
+
+ ${a.Name}
+
+ ${a.Colors[0].ColorName}
+ qty: 1
+ $${a.FinalPrice}
+ `;
+ return console.log(r), r;
+}
+getCartContents();
diff --git a/build/js/product.js b/build/js/product.js
new file mode 100644
index 00000000..38be1e45
--- /dev/null
+++ b/build/js/product.js
@@ -0,0 +1,21 @@
+let products = [];
+function convertToJson(t) {
+ if (t.ok) return t.json();
+ throw new Error("Bad Response");
+}
+function setLocalStorage(t, e) {
+ localStorage.setItem(t, JSON.stringify(e));
+}
+function getProductsData() {
+ fetch("../json/tents.json")
+ .then(convertToJson)
+ .then((t) => {
+ products = t;
+ });
+}
+function addToCart(t) {
+ const e = products.find((n) => n.Id === t.target.dataset.id);
+ setLocalStorage("so-cart", e);
+}
+getProductsData(),
+ document.getElementById("addToCart").addEventListener("click", addToCart);
diff --git a/build/js/utils.js b/build/js/utils.js
new file mode 100644
index 00000000..f292bc73
--- /dev/null
+++ b/build/js/utils.js
@@ -0,0 +1,15 @@
+export function qs(e, t = document) {
+ return t.querySelector(e);
+}
+export function getLocalStorage(e) {
+ return JSON.parse(localStorage.getItem(e));
+}
+export function setLocalStorage(e, t) {
+ localStorage.setItem(e, JSON.stringify(t));
+}
+export function setClick(e, t) {
+ qs(e).addEventListener("touchend", (n) => {
+ n.preventDefault(), t();
+ }),
+ qs(e).addEventListener("click", t);
+}
diff --git a/build/json/backpacks.json b/build/json/backpacks.json
new file mode 100644
index 00000000..e868cb81
--- /dev/null
+++ b/build/json/backpacks.json
@@ -0,0 +1,3482 @@
+{
+ "Count": 64,
+ "Page": 1,
+ "PerPage": 24,
+ "NextPageUrl": "/api/1.0/products/s~backpacks/?page=2",
+ "LastPageUrl": "/api/1.0/products/s~backpacks/?page=3",
+ "RefinementsUrl": "/api/1.0/refinements/search~backpacks/",
+ "Title": "Search for \"backpacks\" ",
+ "Result": [
+ {
+ "Id": "223RN",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/223rn/",
+ "WebUrl": "https://www.sierra.com/product/bounce/223rn/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/223rn/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/223rn/",
+ "ReviewCount": 11,
+ "AverageRating": 4.64
+ },
+ "NameWithoutBrand": "Zulu 55 Backpack - Internal Frame",
+ "Name": "Gregory Zulu 55 Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame-in-moss-green~p~223rn_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame-in-moss-green~p~223rn_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame-in-moss-green~p~223rn_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame-in-moss-green~p~223rn_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame~a~223rn_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame~a~223rn_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["M", "L"] },
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Moss Green",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/223rn-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame-in-moss-green~p~223rn_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Gregory's Zulu 55 backpack boasts a streamlined, yet spacious design ideal for weekend trips and winter overnights. The highly breathable CrossFlo DTS suspension system keeps air circulating across your back, and the bottom compartment offers easy access to your sleeping bag.",
+ "SuggestedRetailPrice": 199.0,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "810NV",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/810nv/",
+ "WebUrl": "https://www.sierra.com/product/bounce/810nv/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/810nv/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/810nv/",
+ "ReviewCount": 1,
+ "AverageRating": 5.0
+ },
+ "NameWithoutBrand": "Paragon 58L Backpack - Internal Frame",
+ "Name": "Gregory Paragon 58L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame-in-sunset-grey~p~810nv_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame-in-sunset-grey~p~810nv_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame-in-sunset-grey~p~810nv_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame-in-sunset-grey~p~810nv_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame~a~810nv_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S/M", "M/L"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Sunset Grey",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/810nv-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame-in-sunset-grey~p~810nv_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . The perfect lightweight companion for overnighting and minimalist trekking, Gregory's Paragon 58L backpack is well-balanced with an alloy Aerolon suspension for outstanding load support and plenty of pockets for organization.",
+ "SuggestedRetailPrice": 189.99,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "848MJ",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/848mj/",
+ "WebUrl": "https://www.sierra.com/product/bounce/848mj/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848mj/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/848mj/",
+ "ReviewCount": 1,
+ "AverageRating": 3.0
+ },
+ "NameWithoutBrand": "Versant 70L Backpack - Internal Frame (For Men)",
+ "Name": "Thule Versant 70L Backpack - Internal Frame (For Men)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men-in-fjord~p~848mj_03~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men-in-fjord~p~848mj_03~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men-in-fjord~p~848mj_03~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men-in-fjord~p~848mj_03~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men~a~848mj_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men~a~848mj_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men~a~848mj_4~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men~a~848mj_5~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "03",
+ "ColorName": "Fjord",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848mj-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men-in-fjord~p~848mj_03~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . When your fun backpacking trip turns into a stormy mess, Thule's Versant 70L backpack has you covered with an integrated StormGuard weatherproofing system that keeps your gear safe from moisture. The adjustable torso and waistbelt ensure the pack fits perfectly every time (even over extra layers), and the main compartment is accessible via the top or a wide-opening front zip panel so that you don't have to totally unpack your bag every time you want something.",
+ "SuggestedRetailPrice": 215.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "541HM",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/541hm/",
+ "WebUrl": "https://www.sierra.com/product/bounce/541hm/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/541hm/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/541hm/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Revol 50L Backpack",
+ "Name": "Kelty Revol 50L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/kelty-revol-50l-backpack-in-raven~p~541hm_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/kelty-revol-50l-backpack-in-raven~p~541hm_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/kelty-revol-50l-backpack-in-raven~p~541hm_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/kelty-revol-50l-backpack-in-raven~p~541hm_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-revol-50l-backpack~a~541hm_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-revol-50l-backpack~a~541hm_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Raven",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/541hm-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-revol-50l-backpack-in-raven~p~541hm_02~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Forest Green",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/541hm-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-revol-50l-backpack-in-forest-green~p~541hm_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . A tried and trusted trail pack upgraded with modern, streamlined features and plenty of space for multi-day excursions, Kelty Revol 50L backpack boasts the Kinesis waistbelt that moves and adjusts with your every step, and a parallel-pivot design that keeps the shape of the waistbelt contoured to your body as you hike.",
+ "SuggestedRetailPrice": 149.99,
+ "Brand": {
+ "Id": "1105",
+ "Url": "/api/1.0/brand/1105/",
+ "ProductsUrl": "/api/1.0/products/kelty~b~1105/",
+ "LogoSrc": "https://i.stpost.com/kelty-revol-50l-backpack~b~1105~160x100.jpg",
+ "Name": "Kelty"
+ },
+ "ListPrice": 119.99,
+ "FinalPrice": 119.99
+ },
+ {
+ "Id": "848MD",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/848md/",
+ "WebUrl": "https://www.sierra.com/product/bounce/848md/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848md/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/848md/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Versant 60L Backpack - Internal Frame (For Men)",
+ "Name": "Thule Versant 60L Backpack - Internal Frame (For Men)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men-in-fjord~p~848md_03~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men-in-fjord~p~848md_03~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men-in-fjord~p~848md_03~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men-in-fjord~p~848md_03~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men~a~848md_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men~a~848md_3~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "03",
+ "ColorName": "Fjord",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848md-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men-in-fjord~p~848md_03~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Dark Forest",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848md-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men-in-dark-forest~p~848md_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . When your fun backpacking trip turns into a stormy mess, Thule's Versant 60L backpack has you covered with an integrated StormGuard weatherproofing system that keeps your gear safe from moisture. The adjustable torso and waistbelt ensure the pack fits perfectly every time (even over extra layers), and the main compartment is accessible via the top and a wide-opening front zip panel. Bonus: The roomy, floating lid quickly converts into a sling pack for day hikes.",
+ "SuggestedRetailPrice": 205.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "889PR",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/889pr/",
+ "WebUrl": "https://www.sierra.com/product/bounce/889pr/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/889pr/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/889pr/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Stout 45 Adjustable Backpack",
+ "Name": "Gregory Stout 45 Adjustable Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-stout-45-adjustable-backpack-in-prairie-orange~p~889pr_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-stout-45-adjustable-backpack-in-prairie-orange~p~889pr_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-stout-45-adjustable-backpack-in-prairie-orange~p~889pr_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-stout-45-adjustable-backpack-in-prairie-orange~p~889pr_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-stout-45-adjustable-backpack~a~889pr_2~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-stout-45-adjustable-backpack~a~889pr_3~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-stout-45-adjustable-backpack~a~889pr_4~600.3.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Prairie Orange",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/889pr-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-stout-45-adjustable-backpack-in-prairie-orange~p~889pr_02~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Navy Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/889pr-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-stout-45-adjustable-backpack-in-navy-blue~p~889pr_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Supportive and smartly designed, Gregory's Stout 35 backpack features a TrailFlex wishbone suspension so it carries comfortably when fully loaded. A roomy, yet compact option well-suited to weekend backpacking trips through technical terrain.",
+ "SuggestedRetailPrice": 149.99,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-stout-45-adjustable-backpack~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 99.99,
+ "FinalPrice": 99.99
+ },
+ {
+ "Id": "928PD",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/928pd/",
+ "WebUrl": "https://www.sierra.com/product/bounce/928pd/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/928pd/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/928pd/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Trophy TS 20L Backpack",
+ "Name": "CamelBak Trophy TS 20L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack-in-mossy-oak-country-break-up~p~928pd_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack-in-mossy-oak-country-break-up~p~928pd_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack-in-mossy-oak-country-break-up~p~928pd_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack-in-mossy-oak-country-break-up~p~928pd_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack~a~928pd_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack~a~928pd_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack~a~928pd_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Mossy Oak Country Break-Up",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/928pd-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack-in-mossy-oak-country-break-up~p~928pd_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Keep hunting essentials close at hand using CamelBak's Trophy TS 20 backpack, optimized for stand hunting with a deployable work shelf and a strap-based hanging system.",
+ "SuggestedRetailPrice": 149.0,
+ "Brand": {
+ "Id": "6070",
+ "Url": "/api/1.0/brand/6070/",
+ "ProductsUrl": "/api/1.0/products/camelbak~b~6070/",
+ "LogoSrc": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack~b~6070~160x100.jpg",
+ "Name": "CamelBak"
+ },
+ "ListPrice": 79.99,
+ "FinalPrice": 79.99
+ },
+ {
+ "Id": "665HD",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/665hd/",
+ "WebUrl": "https://www.sierra.com/product/bounce/665hd/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/665hd/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/665hd/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Maven 45L Backpack - Internal Frame",
+ "Name": "Gregory Maven 45L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame-in-forest-grey~p~665hd_03~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame-in-forest-grey~p~665hd_03~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame-in-forest-grey~p~665hd_03~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame-in-forest-grey~p~665hd_03~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame~a~665hd_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame~a~665hd_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame~a~665hd_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S/M", "XS/S"] },
+ "Colors": [
+ {
+ "ColorCode": "03",
+ "ColorName": "Forest Grey",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/665hd-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame-in-forest-grey~p~665hd_03~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Phoenix Red",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/665hd-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame-in-phoenix-red~p~665hd_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . The perfect lightweight companion for peak-bagging and minimalist overnighting, Gregory's Maven 45L backpack is well-balanced with alloy anti-barreling stays and an HDPE sheet for firm support.",
+ "SuggestedRetailPrice": 149.99,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 99.99,
+ "FinalPrice": 99.99
+ },
+ {
+ "Id": "896MX",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/896mx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/896mx/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896mx/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/896mx/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Manaslu 65L Backpack - Internal Frame",
+ "Name": "Lowe Alpine Manaslu 65L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame-in-oxide~p~896mx_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame-in-oxide~p~896mx_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame-in-oxide~p~896mx_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame-in-oxide~p~896mx_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame~a~896mx_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame~a~896mx_3~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Oxide",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mx-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame-in-oxide~p~896mx_01~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Shaded Spruce",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mx-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame-in-shaded-spruce~p~896mx_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . An epic adventure requires an epic pack, and that's where Lowe Alpine's Manaslu 65L backpack comes in. With its durable construction, expandable lid, Axiom 5 back adjustment system, abundant gear storage and ergonomic design, this backpack is the perfect companion for days, weeks -- or months -- of backpacking or travel.",
+ "SuggestedRetailPrice": 255.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 119.0,
+ "FinalPrice": 119.0
+ },
+ {
+ "Id": "896MT",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/896mt/",
+ "WebUrl": "https://www.sierra.com/product/bounce/896mt/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896mt/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/896mt/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Mountain Ascent 40L Backpack",
+ "Name": "Lowe Alpine Mountain Ascent 40L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-haute-red~p~896mt_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-haute-red~p~896mt_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-haute-red~p~896mt_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-haute-red~p~896mt_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack~a~896mt_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack~a~896mt_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Haute Red",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mt-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-haute-red~p~896mt_01~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Marine",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mt-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-marine~p~896mt_02~160.jpg"
+ },
+ {
+ "ColorCode": "03",
+ "ColorName": "Onyx",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mt-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-onyx~p~896mt_03~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Designed with winter climbers in mind, this Lowe Alpine Mountain Ascent 40L backpack has you covered with plenty of room for your gear, and features gear loops, rope holder, a Headlocker ice axe attachment system and wide slots to tote your powder skis.",
+ "SuggestedRetailPrice": 190.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 79.0,
+ "FinalPrice": 79.0
+ },
+ {
+ "Id": "223RM",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/223rm/",
+ "WebUrl": "https://www.sierra.com/product/bounce/223rm/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/223rm/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/223rm/",
+ "ReviewCount": 11,
+ "AverageRating": 4.27
+ },
+ "NameWithoutBrand": "Jade 53 Backpack (For Women)",
+ "Name": "Gregory Jade 53 Backpack (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-jade-53-backpack-for-women-in-dark-charcoal~p~223rm_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-jade-53-backpack-for-women-in-dark-charcoal~p~223rm_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-jade-53-backpack-for-women-in-dark-charcoal~p~223rm_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-jade-53-backpack-for-women-in-dark-charcoal~p~223rm_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-jade-53-backpack-for-women~a~223rm_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S", "M"] },
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Dark Charcoal",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/223rm-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-jade-53-backpack-for-women-in-dark-charcoal~p~223rm_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Designed especially for trail-bound women, Gregory's Jade 53 backpack features an easy-access, expandable front bucket pocket that's perfect for stowing extra layers and rain gear. Plus, the ventilating CrossFlo DTS system offers comfort for the long haul, and the top pocket detaches as a daypack for shorter treks.",
+ "SuggestedRetailPrice": 199.0,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-jade-53-backpack-for-women~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "896NA",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/896na/",
+ "WebUrl": "https://www.sierra.com/product/bounce/896na/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896na/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/896na/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Manaslu 55L Backpack - Internal Frame",
+ "Name": "Lowe Alpine Manaslu 55L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame-in-shaded-spruce~p~896na_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame-in-shaded-spruce~p~896na_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame-in-shaded-spruce~p~896na_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame-in-shaded-spruce~p~896na_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame~a~896na_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame~a~896na_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Shaded Spruce",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896na-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame-in-shaded-spruce~p~896na_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . An epic adventure requires an epic pack, and that's where Lowe Alpine's Manaslu 55L backpack comes in. With its durable construction, expandable lid, Axiom 5 back adjustment system, abundant gear storage and ergonomic design, this backpack is the perfect companion for mid-range trips.",
+ "SuggestedRetailPrice": 240.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 149.99,
+ "FinalPrice": 149.99
+ },
+ {
+ "Id": "810NW",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/810nw/",
+ "WebUrl": "https://www.sierra.com/product/bounce/810nw/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/810nw/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/810nw/",
+ "ReviewCount": 1,
+ "AverageRating": 5.0
+ },
+ "NameWithoutBrand": "Maven 55L Backpack - Internal Frame",
+ "Name": "Gregory Maven 55L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame-in-river-blue~p~810nw_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame-in-river-blue~p~810nw_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame-in-river-blue~p~810nw_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame-in-river-blue~p~810nw_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame~a~810nw_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["XS/S", "S/M"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "River Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/810nw-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame-in-river-blue~p~810nw_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . The perfect lightweight companion for peak-bagging and minimalist overnighting, Gregory's Maven 55L backpack is well-balanced with alloy anti-barreling stays and an HDPE sheet for firm support.",
+ "SuggestedRetailPrice": 189.99,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 149.99,
+ "FinalPrice": 149.99
+ },
+ {
+ "Id": "893WV",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/893wv/",
+ "WebUrl": "https://www.sierra.com/product/bounce/893wv/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/893wv/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/893wv/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Capstone 32L Backpack - Internal Frame (For Women)",
+ "Name": "Thule Capstone 32L Backpack - Internal Frame (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women-in-deep-teal~p~893wv_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women-in-deep-teal~p~893wv_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women-in-deep-teal~p~893wv_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women-in-deep-teal~p~893wv_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women~a~893wv_2~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Deep Teal",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/893wv-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women-in-deep-teal~p~893wv_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Thule's Capstone 32L backpack is a spacious, super-supportive daypack that can be loaded down comfortably for long day hikes and peak scrambling. The MicroAdjust suspension lets you adjust the torso length along the tubular aluminum frame while wearing the pack.",
+ "SuggestedRetailPrice": 140.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 69.0,
+ "FinalPrice": 69.0
+ },
+ {
+ "Id": "810NP",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/810np/",
+ "WebUrl": "https://www.sierra.com/product/bounce/810np/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/810np/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/810np/",
+ "ReviewCount": 1,
+ "AverageRating": 5.0
+ },
+ "NameWithoutBrand": "Paragon 68L Backpack",
+ "Name": "Gregory Paragon 68L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-paragon-68l-backpack-in-omega-blue~p~810np_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-paragon-68l-backpack-in-omega-blue~p~810np_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-paragon-68l-backpack-in-omega-blue~p~810np_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-paragon-68l-backpack-in-omega-blue~p~810np_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-paragon-68l-backpack~a~810np_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["M/L"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Omega Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/810np-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-paragon-68l-backpack-in-omega-blue~p~810np_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . The perfect lightweight companion for overnighting and minimalist trekking, Gregory's Paragon 58L backpack is well-balanced with an alloy Aerolon suspension for outstanding load support and plenty of pockets for organization.",
+ "SuggestedRetailPrice": 229.99,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-paragon-68l-backpack~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 119.0,
+ "FinalPrice": 119.0
+ },
+ {
+ "Id": "893WU",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/893wu/",
+ "WebUrl": "https://www.sierra.com/product/bounce/893wu/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/893wu/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/893wu/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Capstone 22L Backpack (For Men)",
+ "Name": "Thule Capstone 22L Backpack (For Men)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-atlantic~p~893wu_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-atlantic~p~893wu_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-atlantic~p~893wu_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-atlantic~p~893wu_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-capstone-22l-backpack-for-men~a~893wu_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S/M", "M/L"] },
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Atlantic",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/893wu-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-atlantic~p~893wu_02~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Obsidian",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/893wu-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-obsidian~p~893wu_01~160.jpg"
+ },
+ {
+ "ColorCode": "03",
+ "ColorName": "Slickrock",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/893wu-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-slickrock~p~893wu_03~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Just add your sense of adventure! The Thule Capstone 22L backpack features a micro-adjustable suspension that provides the perfect fit, and it has all the trail-ready features you need for day trips and ultralight overnights.",
+ "SuggestedRetailPrice": 115.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-capstone-22l-backpack-for-men~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 79.99,
+ "FinalPrice": 79.99
+ },
+ {
+ "Id": "896MU",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/896mu/",
+ "WebUrl": "https://www.sierra.com/product/bounce/896mu/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896mu/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/896mu/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Cerro Torre 65L Large Backpack - Internal Frame",
+ "Name": "Lowe Alpine Cerro Torre 65L Large Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame-in-bondi-blue~p~896mu_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame-in-bondi-blue~p~896mu_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame-in-bondi-blue~p~896mu_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame-in-bondi-blue~p~896mu_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame~a~896mu_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame~a~896mu_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Bondi Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mu-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame-in-bondi-blue~p~896mu_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . If you want a bag that does it all, look no further than Lowe Alpine's Cerro Torre 65L Large backpack. With its durable TriShield® Grid construction, expandable lid, Axiom 7 back adjustment system, abundant gear storage and ergonomic design, this backpack is the perfect companion for lengthy backpacking trips.",
+ "SuggestedRetailPrice": 300.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 149.0,
+ "FinalPrice": 149.0
+ },
+ {
+ "Id": "730FX",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/730fx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/730fx/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/730fx/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/730fx/",
+ "ReviewCount": 1,
+ "AverageRating": 4.0
+ },
+ "NameWithoutBrand": "Instigator 32L Backpack",
+ "Name": "The North Face Instigator 32L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/the-north-face-instigator-32l-backpack-in-tnf-yellow-tnf-black~p~730fx_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/the-north-face-instigator-32l-backpack-in-tnf-yellow-tnf-black~p~730fx_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/the-north-face-instigator-32l-backpack-in-tnf-yellow-tnf-black~p~730fx_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-instigator-32l-backpack-in-tnf-yellow-tnf-black~p~730fx_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-instigator-32l-backpack~a~730fx_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-instigator-32l-backpack~a~730fx_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-instigator-32l-backpack~a~730fx_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Tnf Yellow/Tnf Black",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/730fx-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-instigator-32l-backpack-in-tnf-yellow-tnf-black~p~730fx_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . At home in town and on the trail, The North Face's Instigator backpack lets you take it all with you safely and comfortably thanks to a massive main compartment, a padded laptop sleeve, and padded straps for optimal comfort.",
+ "SuggestedRetailPrice": 109.0,
+ "Brand": {
+ "Id": "1440",
+ "Url": "/api/1.0/brand/1440/",
+ "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
+ "LogoSrc": "https://i.stpost.com/the-north-face-instigator-32l-backpack~b~1440~160x100.jpg",
+ "Name": "The North Face"
+ },
+ "ListPrice": 59.0,
+ "FinalPrice": 59.0
+ },
+ {
+ "Id": "897XT",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/897xt/",
+ "WebUrl": "https://www.sierra.com/product/bounce/897xt/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/897xt/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/897xt/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Terraframe 3-Zip 50L Backpack",
+ "Name": "Mystery Ranch Terraframe 3-Zip 50L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xt_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xt_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xt_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xt_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack~a~897xt_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack~a~897xt_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["M"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Phantom",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/897xt-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xt_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Easily manage awkward, oversized loads on the trail with Mystery Ranch's Terraframe 3-Zip 50L backpack, a versatile hybrid bag featuring a rigid, carbon-fiber frame that flexes with your body, expandable Terraframe technology, a Y-shaped three-zip system for easy access to your full bag, and an OVERLOAD® sling that supports up to 150 pounds.",
+ "SuggestedRetailPrice": 330.0,
+ "Brand": {
+ "Id": "37083",
+ "Url": "/api/1.0/brand/37083/",
+ "ProductsUrl": "/api/1.0/products/mystery-ranch~b~37083/",
+ "LogoSrc": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack~b~37083~160x100.jpg",
+ "Name": "Mystery Ranch"
+ },
+ "ListPrice": 229.99,
+ "FinalPrice": 229.99
+ },
+ {
+ "Id": "20FWN",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/20fwn/",
+ "WebUrl": "https://www.sierra.com/product/bounce/20fwn/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/20fwn/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/20fwn/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Banchee 65 Pack",
+ "Name": "The North Face Banchee 65 Pack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/the-north-face-banchee-65-pack-in-urban-navy-bright-cobalt-blue~p~20fwn_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/the-north-face-banchee-65-pack-in-urban-navy-bright-cobalt-blue~p~20fwn_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/the-north-face-banchee-65-pack-in-urban-navy-bright-cobalt-blue~p~20fwn_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-banchee-65-pack-in-urban-navy-bright-cobalt-blue~p~20fwn_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-banchee-65-pack~a~20fwn_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S/M", "L/XL"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Urban Navy/Bright Cobalt Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/20fwn-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-banchee-65-pack-in-urban-navy-bright-cobalt-blue~p~20fwn_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . From day hikes to overnight trips, The North Face's Banchee 65 pack will hold all your gear without weighing you down. With an ultralight, durable aluminum frame and FlashDry technology, you can comfortably carry this pack through any terrain.",
+ "SuggestedRetailPrice": 220.0,
+ "Brand": {
+ "Id": "1440",
+ "Url": "/api/1.0/brand/1440/",
+ "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
+ "LogoSrc": "https://i.stpost.com/the-north-face-banchee-65-pack~b~1440~160x100.jpg",
+ "Name": "The North Face"
+ },
+ "ListPrice": 149.99,
+ "FinalPrice": 149.99
+ },
+ {
+ "Id": "897XN",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/897xn/",
+ "WebUrl": "https://www.sierra.com/product/bounce/897xn/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/897xn/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/897xn/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Hover Pack 40L Backpack - Internal Frame",
+ "Name": "Mystery Ranch Hover Pack 40L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame-in-deep-sea~p~897xn_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame-in-deep-sea~p~897xn_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame-in-deep-sea~p~897xn_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame-in-deep-sea~p~897xn_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame~a~897xn_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame~a~897xn_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["M", "L"] },
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Deep Sea",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/897xn-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame-in-deep-sea~p~897xn_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . The Mystery Ranch Hover 40L backpack features a highly breathable Hover system that allows air flow between your back and the pack, ample padding through the back and hips, and just-right room for all your gear.",
+ "SuggestedRetailPrice": 225.0,
+ "Brand": {
+ "Id": "37083",
+ "Url": "/api/1.0/brand/37083/",
+ "ProductsUrl": "/api/1.0/products/mystery-ranch~b~37083/",
+ "LogoSrc": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame~b~37083~160x100.jpg",
+ "Name": "Mystery Ranch"
+ },
+ "ListPrice": 149.99,
+ "FinalPrice": 149.99
+ },
+ {
+ "Id": "897XX",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/897xx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/897xx/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/897xx/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/897xx/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Terraframe 3-Zip 50L Backpack",
+ "Name": "Mystery Ranch Terraframe 3-Zip 50L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xx_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xx_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xx_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xx_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack~a~897xx_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack~a~897xx_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S", "M", "XL"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Phantom",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/897xx-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xx_01~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Deep Earth",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/897xx-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-deep-earth~p~897xx_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Easily manage awkward, oversized loads on the trail with Mystery Ranch's Terraframe 3-Zip 50L backpack, a versatile hybrid bag featuring a rigid, carbon-fiber frame that flexes with your body, expandable Terraframe technology, a Y-shaped three-zip system for easy access to your full bag, and an OVERLOAD® sling that supports up to 150 pounds.",
+ "SuggestedRetailPrice": 330.0,
+ "Brand": {
+ "Id": "37083",
+ "Url": "/api/1.0/brand/37083/",
+ "ProductsUrl": "/api/1.0/products/mystery-ranch~b~37083/",
+ "LogoSrc": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack~b~37083~160x100.jpg",
+ "Name": "Mystery Ranch"
+ },
+ "ListPrice": 229.99,
+ "FinalPrice": 229.99
+ },
+ {
+ "Id": "889KT",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/889kt/",
+ "WebUrl": "https://www.sierra.com/product/bounce/889kt/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/889kt/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/889kt/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Stout 65L Backpack",
+ "Name": "Gregory Stout 65L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-stout-65l-backpack-in-navy-blue~p~889kt_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-stout-65l-backpack-in-navy-blue~p~889kt_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-stout-65l-backpack-in-navy-blue~p~889kt_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-stout-65l-backpack-in-navy-blue~p~889kt_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-stout-65l-backpack~a~889kt_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-stout-65l-backpack~a~889kt_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Navy Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/889kt-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-stout-65l-backpack-in-navy-blue~p~889kt_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Built for multi-day trips and globe-trotting travel, the Gregory Stout 65L backpack has all the comfort, advanced pack technology and organizing features you expect from the backpack experts at Gregory.",
+ "SuggestedRetailPrice": 169.99,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-stout-65l-backpack~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "20FWM",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/20fwm/",
+ "WebUrl": "https://www.sierra.com/product/bounce/20fwm/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/20fwm/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/20fwm/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Hydra 38 Backpack",
+ "Name": "The North Face Hydra 38 Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/the-north-face-hydra-38-backpack-in-urban-navy-bomber-blue~p~20fwm_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/the-north-face-hydra-38-backpack-in-urban-navy-bomber-blue~p~20fwm_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/the-north-face-hydra-38-backpack-in-urban-navy-bomber-blue~p~20fwm_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-hydra-38-backpack-in-urban-navy-bomber-blue~p~20fwm_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-hydra-38-backpack~a~20fwm_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-hydra-38-backpack~a~20fwm_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["L/XL", "S/M"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Urban Navy/Bomber Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/20fwm-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-hydra-38-backpack-in-urban-navy-bomber-blue~p~20fwm_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . From day hikes to overnight trips, The North Face's Hydra 38 backpack will hold all your gear without weighing you down. With an ultralight, durable aluminum frame and FlashDry® technology, you can comfortably carry this pack through any terrain.",
+ "SuggestedRetailPrice": 140.0,
+ "Brand": {
+ "Id": "1440",
+ "Url": "/api/1.0/brand/1440/",
+ "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
+ "LogoSrc": "https://i.stpost.com/the-north-face-hydra-38-backpack~b~1440~160x100.jpg",
+ "Name": "The North Face"
+ },
+ "ListPrice": 99.99,
+ "FinalPrice": 99.99
+ },
+ {
+ "Id": "195UK",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/195uk/",
+ "WebUrl": "https://www.sierra.com/product/bounce/195uk/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/195uk/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/195uk/",
+ "ReviewCount": 20,
+ "AverageRating": 4.35
+ },
+ "NameWithoutBrand": "Jade 38L Backpack - Internal Frame (For Women)",
+ "Name": "Gregory Jade 38L Backpack - Internal Frame (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-dark-charcoal~p~195uk_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-dark-charcoal~p~195uk_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-dark-charcoal~p~195uk_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-dark-charcoal~p~195uk_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women~a~195uk_2~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S", "M", "XS"] },
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Dark Charcoal",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/195uk-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-dark-charcoal~p~195uk_02~160.jpg"
+ },
+ {
+ "ColorCode": "04",
+ "ColorName": "Mountain Purple",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/195uk-04.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-mountain-purple~p~195uk_04~160.jpg"
+ },
+ {
+ "ColorCode": "03",
+ "ColorName": "Ruby Red",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/195uk-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-ruby-red~p~195uk_03~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Designed especially for trail-bound women, Gregory's Jade 38 backpack features an easy-access, expandable front bucket pocket that's perfect for stowing extra layers and rain gear. Plus, the ventilating CrossFlo DTS system offers comfort for the long haul.",
+ "SuggestedRetailPrice": 179.0,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 79.99,
+ "FinalPrice": 79.99
+ },
+ {
+ "Id": "848JY",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/848jy/",
+ "WebUrl": "https://www.sierra.com/product/bounce/848jy/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848jy/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/848jy/",
+ "ReviewCount": 1,
+ "AverageRating": 5.0
+ },
+ "NameWithoutBrand": "Stir 28L Backpack",
+ "Name": "Thule Stir 28L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-stir-28l-backpack-in-dark-shadow~p~848jy_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-stir-28l-backpack-in-dark-shadow~p~848jy_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-stir-28l-backpack-in-dark-shadow~p~848jy_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-stir-28l-backpack-in-dark-shadow~p~848jy_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-28l-backpack~a~848jy_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-28l-backpack~a~848jy_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Dark Shadow",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848jy-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-28l-backpack-in-dark-shadow~p~848jy_01~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Dark Forest",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848jy-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-28l-backpack-in-dark-forest~p~848jy_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . With its 28-liter capacity and smart suspension, the Thule Stir backpack is nicely sized for day hikes and other short trips.",
+ "SuggestedRetailPrice": 110.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-stir-28l-backpack~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 69.99,
+ "FinalPrice": 69.99
+ },
+ {
+ "Id": "889DC",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/889dc/",
+ "WebUrl": "https://www.sierra.com/product/bounce/889dc/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/889dc/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/889dc/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Amber 60L Backpack (For Women)",
+ "Name": "Gregory Amber 60L Backpack (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-amber-60l-backpack-for-women-in-pearl-blue~p~889dc_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-amber-60l-backpack-for-women-in-pearl-blue~p~889dc_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-amber-60l-backpack-for-women-in-pearl-blue~p~889dc_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-amber-60l-backpack-for-women-in-pearl-blue~p~889dc_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-amber-60l-backpack-for-women~a~889dc_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Pearl Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/889dc-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-amber-60l-backpack-for-women-in-pearl-blue~p~889dc_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . The features, TrailFlex suspension and 60-liter capacity of the Gregory Amber 60L backpack combine to hit a sweet spot -- this versatile backpack can cover quick over-night trips and multi-day hikes with equal ease.",
+ "SuggestedRetailPrice": 169.99,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-amber-60l-backpack-for-women~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "877UJ",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/877uj/",
+ "WebUrl": "https://www.sierra.com/product/bounce/877uj/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/877uj/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/877uj/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "ACT Lite 60+10 SL Backpack - Internal Frame (For Women)",
+ "Name": "Deuter ACT Lite 60+10 SL Backpack - Internal Frame (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~877uj_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~877uj_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~877uj_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~877uj_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Pine/Moss",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/877uj-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~877uj_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Take an extended trip and spend your days surrounded by amazing views and the lovely sounds of nature with Deuter's ACT Lite 60+10 SL backpack, designed with multiple points of adjustment for a fine-tuned fit and a spacious main compartment with a floating lid and spindrift collar that can accommodate an extra 10 liters of gear.",
+ "SuggestedRetailPrice": 180.0,
+ "Brand": {
+ "Id": "4061",
+ "Url": "/api/1.0/brand/4061/",
+ "ProductsUrl": "/api/1.0/products/deuter~b~4061/",
+ "LogoSrc": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women~b~4061~160x100.jpg",
+ "Name": "Deuter"
+ },
+ "ListPrice": 119.99,
+ "FinalPrice": 119.99
+ },
+ {
+ "Id": "665GX",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/665gx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/665gx/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/665gx/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/665gx/",
+ "ReviewCount": 1,
+ "AverageRating": 5.0
+ },
+ "NameWithoutBrand": "Paragon 48L Backpack - Internal Frame",
+ "Name": "Gregory Paragon 48L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame-in-sunset-grey~p~665gx_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame-in-sunset-grey~p~665gx_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame-in-sunset-grey~p~665gx_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame-in-sunset-grey~p~665gx_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame~a~665gx_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S/M", "M/L"] },
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Sunset Grey",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/665gx-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame-in-sunset-grey~p~665gx_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . The perfect lightweight companion for overnighting and minimalist trekking, Gregory's Paragon 48L backpack is well-balanced with an alloy Aerolon suspension for outstanding load support and plenty of pockets for organization.",
+ "SuggestedRetailPrice": 149.99,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 119.99,
+ "FinalPrice": 119.99
+ },
+ {
+ "Id": "19JDX",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/19jdx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/19jdx/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/19jdx/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/19jdx/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Peak 45L Backpack - Internal Frame",
+ "Name": "ALPS Mountaineering Peak 45L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame-in-clay-apricot~p~19jdx_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame-in-clay-apricot~p~19jdx_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame-in-clay-apricot~p~19jdx_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame-in-clay-apricot~p~19jdx_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame~a~19jdx_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame~a~19jdx_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Clay/Apricot",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/19jdx-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame-in-clay-apricot~p~19jdx_01~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Gray",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/19jdx-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame-in-gray~p~19jdx_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Ready for any adventure, this ALPS Mountaineering Peak 45 backpack features plenty of space for gear and essentials with a large main compartment, hip belt pockets and lid pocket, removable waist belt and a rain cover for stormy days.",
+ "SuggestedRetailPrice": 90.0,
+ "Brand": {
+ "Id": "1156",
+ "Url": "/api/1.0/brand/1156/",
+ "ProductsUrl": "/api/1.0/products/alps-mountaineering~b~1156/",
+ "LogoSrc": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame~b~1156~160x100.jpg",
+ "Name": "ALPS Mountaineering"
+ },
+ "ListPrice": 69.99,
+ "FinalPrice": 69.99
+ },
+ {
+ "Id": "893WW",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/893ww/",
+ "WebUrl": "https://www.sierra.com/product/bounce/893ww/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/893ww/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/893ww/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Capstone 32L Backpack (For Men)",
+ "Name": "Thule Capstone 32L Backpack (For Men)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-capstone-32l-backpack-for-men-in-obsidian~p~893ww_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-capstone-32l-backpack-for-men-in-obsidian~p~893ww_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-capstone-32l-backpack-for-men-in-obsidian~p~893ww_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-capstone-32l-backpack-for-men-in-obsidian~p~893ww_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-capstone-32l-backpack-for-men~a~893ww_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Obsidian",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/893ww-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-capstone-32l-backpack-for-men-in-obsidian~p~893ww_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Just add your sense of adventure! The Thule Capstone 32L backpack features a micro-adjustable suspension that provides the perfect fit, and it has all the trail-ready features you need for day trips and ultralight overnights.",
+ "SuggestedRetailPrice": 140.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-capstone-32l-backpack-for-men~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 89.99,
+ "FinalPrice": 89.99
+ },
+ {
+ "Id": "172TX",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/172tx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/172tx/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/172tx/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/172tx/",
+ "ReviewCount": 7,
+ "AverageRating": 4.0
+ },
+ "NameWithoutBrand": "Lookout 80L Backpack - Internal Frame",
+ "Name": "Mountainsmith Lookout 80L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame-in-pinon-green~p~172tx_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame-in-pinon-green~p~172tx_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame-in-pinon-green~p~172tx_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame-in-pinon-green~p~172tx_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame~a~172tx_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Pinon Green",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/172tx-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame-in-pinon-green~p~172tx_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . A heavy-duty hauler at a great value, Mountainsmith's Lookout 80L backpack is ready for multi-day backpacking missions. The adjustable, supportive suspension system and spacious main compartment mean you can load it up and still move comfortably on the trail.",
+ "SuggestedRetailPrice": 224.95,
+ "Brand": {
+ "Id": "13540",
+ "Url": "/api/1.0/brand/13540/",
+ "ProductsUrl": "/api/1.0/products/mountainsmith~b~13540/",
+ "LogoSrc": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame~b~13540~160x100.jpg",
+ "Name": "Mountainsmith"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "848MG",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/848mg/",
+ "WebUrl": "https://www.sierra.com/product/bounce/848mg/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848mg/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/848mg/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Versant 60L Backpack - Internal Frame (For Women)",
+ "Name": "Thule Versant 60L Backpack - Internal Frame (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mg_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mg_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mg_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mg_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women~a~848mg_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women~a~848mg_3~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women~a~848mg_4~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women~a~848mg_5~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Mazerine Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848mg-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mg_02~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Deep Teal",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848mg-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women-in-deep-teal~p~848mg_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Thule's Versant 60L backpack is spacious and supportive enough for multi-day backcountry trips and backpacker travel. The female-specific design includes waistbelt and torso adjustability for customizable comfort, access to the spacious main compartment from the top and front, and a three-quarter rain cover with a waterproof bottom liner to protect your gear from the elements.",
+ "SuggestedRetailPrice": 205.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "486KV",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/486kv/",
+ "WebUrl": "https://www.sierra.com/product/bounce/486kv/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/486kv/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/486kv/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Approach 25L Backpack",
+ "Name": "Mountainsmith Approach 25L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/mountainsmith-approach-25l-backpack-in-dark-camo~p~486kv_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/mountainsmith-approach-25l-backpack-in-dark-camo~p~486kv_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/mountainsmith-approach-25l-backpack-in-dark-camo~p~486kv_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/mountainsmith-approach-25l-backpack-in-dark-camo~p~486kv_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mountainsmith-approach-25l-backpack~a~486kv_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mountainsmith-approach-25l-backpack~a~486kv_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mountainsmith-approach-25l-backpack~a~486kv_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Dark Camo",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/486kv-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/mountainsmith-approach-25l-backpack-in-dark-camo~p~486kv_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . The perfect go-to for commutes, jaunts across campus and quick ascents to the summit, Mountainsmith's Approach 25L backpack makes a handy dual-panel loader bag for both weekdays and adventure-filled weekends.",
+ "SuggestedRetailPrice": 89.95,
+ "Brand": {
+ "Id": "13540",
+ "Url": "/api/1.0/brand/13540/",
+ "ProductsUrl": "/api/1.0/products/mountainsmith~b~13540/",
+ "LogoSrc": "https://i.stpost.com/mountainsmith-approach-25l-backpack~b~13540~160x100.jpg",
+ "Name": "Mountainsmith"
+ },
+ "ListPrice": 43.0,
+ "FinalPrice": 43.0
+ },
+ {
+ "Id": "848HW",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/848hw/",
+ "WebUrl": "https://www.sierra.com/product/bounce/848hw/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848hw/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/848hw/",
+ "ReviewCount": 1,
+ "AverageRating": 2.0
+ },
+ "NameWithoutBrand": "Stir 18L Backpack",
+ "Name": "Thule Stir 18L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-stir-18l-backpack-in-dark-shadow~p~848hw_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-stir-18l-backpack-in-dark-shadow~p~848hw_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-stir-18l-backpack-in-dark-shadow~p~848hw_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-stir-18l-backpack-in-dark-shadow~p~848hw_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-18l-backpack~a~848hw_2~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-18l-backpack~a~848hw_3~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-18l-backpack~a~848hw_4~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-18l-backpack~a~848hw_5~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-18l-backpack~a~848hw_6~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Dark Shadow",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848hw-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-18l-backpack-in-dark-shadow~p~848hw_01~160.jpg"
+ },
+ {
+ "ColorCode": "03",
+ "ColorName": "Fjord",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848hw-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-18l-backpack-in-fjord~p~848hw_03~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Thule's Stir 18L backpack comfortably carries all your things over the mountains or around town in light, durable fabric and an ergonomic design. The padded, mesh-lined shoulder straps feature cutouts for added breathability, plus quick-access loops, a stretchy zip pocket and a removable sternum clip.",
+ "SuggestedRetailPrice": 80.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-stir-18l-backpack~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 49.99,
+ "FinalPrice": 49.99
+ },
+ {
+ "Id": "897XU",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/897xu/",
+ "WebUrl": "https://www.sierra.com/product/bounce/897xu/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/897xu/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/897xu/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Hover 50L Backpack - Internal Frame",
+ "Name": "Mystery Ranch Hover 50L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame-in-adobe~p~897xu_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame-in-adobe~p~897xu_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame-in-adobe~p~897xu_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame-in-adobe~p~897xu_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame~a~897xu_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame~a~897xu_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame~a~897xu_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["M", "L", "S", "XL"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Adobe",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/897xu-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame-in-adobe~p~897xu_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Mystery Ranch's Hover 50L backpack is a spacious and comfortable pack for long hikes and short backpacking trips, offering a breathable Hover system that allows air flow between your back and the pack, ample padding through the back and hips, and plenty of room for all your gear.",
+ "SuggestedRetailPrice": 240.0,
+ "Brand": {
+ "Id": "37083",
+ "Url": "/api/1.0/brand/37083/",
+ "ProductsUrl": "/api/1.0/products/mystery-ranch~b~37083/",
+ "LogoSrc": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame~b~37083~160x100.jpg",
+ "Name": "Mystery Ranch"
+ },
+ "ListPrice": 179.99,
+ "FinalPrice": 179.99
+ },
+ {
+ "Id": "8439K",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/8439k/",
+ "WebUrl": "https://www.sierra.com/product/bounce/8439k/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/8439k/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/8439k/",
+ "ReviewCount": 8,
+ "AverageRating": 4.75
+ },
+ "NameWithoutBrand": "ACT Lite 60+10 SL Backpack - Internal Frame (For Women)",
+ "Name": "Deuter ACT Lite 60+10 SL Backpack - Internal Frame (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~8439k_04~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~8439k_04~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~8439k_04~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~8439k_04~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "04",
+ "ColorName": "Pine/Moss",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/8439k-04.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~8439k_04~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . The customizable fit and multiple storage compartments in the Deuter ACT Lite 60+ 10 SL backpack make it an outstanding performer on weekend backpacking trips and for adventure travel.",
+ "SuggestedRetailPrice": 169.99,
+ "Brand": {
+ "Id": "4061",
+ "Url": "/api/1.0/brand/4061/",
+ "ProductsUrl": "/api/1.0/products/deuter~b~4061/",
+ "LogoSrc": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women~b~4061~160x100.jpg",
+ "Name": "Deuter"
+ },
+ "ListPrice": 119.99,
+ "FinalPrice": 119.99
+ },
+ {
+ "Id": "15FMM",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/15fmm/",
+ "WebUrl": "https://www.sierra.com/product/bounce/15fmm/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/15fmm/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/15fmm/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Happy Camper Mission 25 L Backpack",
+ "Name": "DaKine Happy Camper Mission 25 L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack-in-windells-speed-team~p~15fmm_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack-in-windells-speed-team~p~15fmm_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack-in-windells-speed-team~p~15fmm_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack-in-windells-speed-team~p~15fmm_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack~a~15fmm_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Windells Speed Team",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/15fmm-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack-in-windells-speed-team~p~15fmm_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . From camping trips to mountain fun, this DaKine Happy Camper Mission backpack will be your happy companion through every season of the year. It includes plenty of pockets for essentials, a laptop sleeve, vertical snowboard carry straps and a stowable lunch box that can also be worn as a hip pack.",
+ "SuggestedRetailPrice": 115.0,
+ "Brand": {
+ "Id": "3895",
+ "Url": "/api/1.0/brand/3895/",
+ "ProductsUrl": "/api/1.0/products/dakine~b~3895/",
+ "LogoSrc": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack~b~3895~160x100.jpg",
+ "Name": "DaKine"
+ },
+ "ListPrice": 39.99,
+ "FinalPrice": 39.99
+ },
+ {
+ "Id": "926WF",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/926wf/",
+ "WebUrl": "https://www.sierra.com/product/bounce/926wf/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/926wf/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/926wf/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Peregrine 1800 Tactical Backpack",
+ "Name": "Kelty Peregrine 1800 Tactical Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack-in-coyote-brown~p~926wf_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack-in-coyote-brown~p~926wf_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack-in-coyote-brown~p~926wf_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack-in-coyote-brown~p~926wf_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack~a~926wf_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack~a~926wf_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack~a~926wf_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Coyote Brown",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/926wf-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack-in-coyote-brown~p~926wf_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . You'll be ready for adventures on the trail or in the city with Kelty's Peregrine 1800 tactical backpack, featuring three zip compartments with plenty of storage space, an inner sleeve that can accommodate a hydration reservoir or a laptop, and shoulder and back cushioning for all-day comfort.",
+ "SuggestedRetailPrice": 90.0,
+ "Brand": {
+ "Id": "1105",
+ "Url": "/api/1.0/brand/1105/",
+ "ProductsUrl": "/api/1.0/products/kelty~b~1105/",
+ "LogoSrc": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack~b~1105~160x100.jpg",
+ "Name": "Kelty"
+ },
+ "ListPrice": 59.99,
+ "FinalPrice": 59.99
+ },
+ {
+ "Id": "445FJ",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/445fj/",
+ "WebUrl": "https://www.sierra.com/product/bounce/445fj/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/445fj/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/445fj/",
+ "ReviewCount": 1,
+ "AverageRating": 5.0
+ },
+ "NameWithoutBrand": "Siro 50L Backpack - Internal Frame",
+ "Name": "Kelty Siro 50L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame-in-woodbine~p~445fj_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame-in-woodbine~p~445fj_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame-in-woodbine~p~445fj_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame-in-woodbine~p~445fj_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame~a~445fj_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S/M", "M/L"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Woodbine",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/445fj-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame-in-woodbine~p~445fj_01~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Black",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/445fj-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame-in-black~p~445fj_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Overstock . Lightweight and streamlined, Kelty's 45L Siro backpack offers a FeatherFIT suspension system with a suspended AirMesh back panel and integrated lumbar support to keep you in comfort on the long haul.",
+ "SuggestedRetailPrice": 199.95,
+ "Brand": {
+ "Id": "1105",
+ "Url": "/api/1.0/brand/1105/",
+ "ProductsUrl": "/api/1.0/products/kelty~b~1105/",
+ "LogoSrc": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame~b~1105~160x100.jpg",
+ "Name": "Kelty"
+ },
+ "ListPrice": 79.0,
+ "FinalPrice": 79.0
+ },
+ {
+ "Id": "896MM",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/896mm/",
+ "WebUrl": "https://www.sierra.com/product/bounce/896mm/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896mm/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/896mm/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Alpine Ascent 25L Backpack",
+ "Name": "Lowe Alpine Alpine Ascent 25L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack-in-onyx~p~896mm_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack-in-onyx~p~896mm_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack-in-onyx~p~896mm_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack-in-onyx~p~896mm_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack~a~896mm_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack~a~896mm_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Onyx",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mm-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack-in-onyx~p~896mm_02~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Fire",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mm-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack-in-fire~p~896mm_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Whatever season you climb in, Lowe Alpine's Alpine Ascent 25L backpack has you covered with plenty of room for your gear, and features gear loops, rope holder and a Headlocker ice axe attachment system.",
+ "SuggestedRetailPrice": 130.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 59.0,
+ "FinalPrice": 59.0
+ },
+ {
+ "Id": "20FWP",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/20fwp/",
+ "WebUrl": "https://www.sierra.com/product/bounce/20fwp/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/20fwp/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/20fwp/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Fovero 85 Pack",
+ "Name": "The North Face Fovero 85 Pack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/the-north-face-fovero-85-pack-in-tnf-black-high-rise-grey~p~20fwp_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/the-north-face-fovero-85-pack-in-tnf-black-high-rise-grey~p~20fwp_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/the-north-face-fovero-85-pack-in-tnf-black-high-rise-grey~p~20fwp_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-fovero-85-pack-in-tnf-black-high-rise-grey~p~20fwp_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-fovero-85-pack~a~20fwp_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-fovero-85-pack~a~20fwp_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S/M"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Tnf Black/High Rise Grey",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/20fwp-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-fovero-85-pack-in-tnf-black-high-rise-grey~p~20fwp_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . The North Face's Fovero 85 pack will be your pack of choice for your next backcountry adventure with its OPTIFIT suspension and durable ripstop nylon construction.",
+ "SuggestedRetailPrice": 250.0,
+ "Brand": {
+ "Id": "1440",
+ "Url": "/api/1.0/brand/1440/",
+ "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
+ "LogoSrc": "https://i.stpost.com/the-north-face-fovero-85-pack~b~1440~160x100.jpg",
+ "Name": "The North Face"
+ },
+ "ListPrice": 179.99,
+ "FinalPrice": 179.99
+ },
+ {
+ "Id": "16DXP",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/16dxp/",
+ "WebUrl": "https://www.sierra.com/product/bounce/16dxp/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16dxp/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/16dxp/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Speedfit 28 L Backpack",
+ "Name": "Dynafit Speedfit 28 L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/dynafit-speedfit-28-l-backpack-in-black-neo-yellow~p~16dxp_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/dynafit-speedfit-28-l-backpack-in-black-neo-yellow~p~16dxp_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/dynafit-speedfit-28-l-backpack-in-black-neo-yellow~p~16dxp_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/dynafit-speedfit-28-l-backpack-in-black-neo-yellow~p~16dxp_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/dynafit-speedfit-28-l-backpack~a~16dxp_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/dynafit-speedfit-28-l-backpack~a~16dxp_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/dynafit-speedfit-28-l-backpack~a~16dxp_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Black/Neo Yellow",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16dxp-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/dynafit-speedfit-28-l-backpack-in-black-neo-yellow~p~16dxp_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Be seen in low-light conditions on the mountain with Dynafit's Speedfit backpack, featuring a bright LED light band at the bottom of the pack.",
+ "SuggestedRetailPrice": 120.0,
+ "Brand": {
+ "Id": "1364",
+ "Url": "/api/1.0/brand/1364/",
+ "ProductsUrl": "/api/1.0/products/dynafit~b~1364/",
+ "LogoSrc": "https://i.stpost.com/dynafit-speedfit-28-l-backpack~b~1364~160x100.jpg",
+ "Name": "Dynafit"
+ },
+ "ListPrice": 69.99,
+ "FinalPrice": 69.99
+ },
+ {
+ "Id": "848HV",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/848hv/",
+ "WebUrl": "https://www.sierra.com/product/bounce/848hv/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848hv/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/848hv/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Stir 15L Backpack",
+ "Name": "Thule Stir 15L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-stir-15l-backpack-in-fjord~p~848hv_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-stir-15l-backpack-in-fjord~p~848hv_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-stir-15l-backpack-in-fjord~p~848hv_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-stir-15l-backpack-in-fjord~p~848hv_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-15l-backpack~a~848hv_2~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-15l-backpack~a~848hv_3~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-15l-backpack~a~848hv_4~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-15l-backpack~a~848hv_5~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-15l-backpack~a~848hv_6~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-15l-backpack~a~848hv_7~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Fjord",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848hv-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-15l-backpack-in-fjord~p~848hv_02~160.jpg"
+ },
+ {
+ "ColorCode": "03",
+ "ColorName": "Dark Forest",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848hv-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-15l-backpack-in-dark-forest~p~848hv_03~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . With its 15-liter capacity and smart suspension, the Thule Stir 15L backpack is nicely sized for day hikes and other short trips.",
+ "SuggestedRetailPrice": 50.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-stir-15l-backpack~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 34.99,
+ "FinalPrice": 34.99
+ },
+ {
+ "Id": "18DUD",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/18dud/",
+ "WebUrl": "https://www.sierra.com/product/bounce/18dud/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/18dud/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/18dud/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Aircontact 45L + 10 Backpack (For Men and Women)",
+ "Name": "Deuter Aircontact 45L + 10 Backpack (For Men and Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women-in-cranberry-graphite~p~18dud_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women-in-cranberry-graphite~p~18dud_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women-in-cranberry-graphite~p~18dud_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women-in-cranberry-graphite~p~18dud_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women~a~18dud_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Cranberry/Graphite",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/18dud-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women-in-cranberry-graphite~p~18dud_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Deuter's Aircontact 48L+10 backpack comfortably carries your supplies for a weekend full of trail exploring. Its Aircontact back-system paired with S-shaped shoulder straps allow you to fine-tune your fit for optimal load distribution and breathable comfort even when fully loaded.",
+ "SuggestedRetailPrice": 220.0,
+ "Brand": {
+ "Id": "4061",
+ "Url": "/api/1.0/brand/4061/",
+ "ProductsUrl": "/api/1.0/products/deuter~b~4061/",
+ "LogoSrc": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women~b~4061~160x100.jpg",
+ "Name": "Deuter"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "660MY",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/660my/",
+ "WebUrl": "https://www.sierra.com/product/bounce/660my/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/660my/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/660my/",
+ "ReviewCount": 3,
+ "AverageRating": 4.33
+ },
+ "NameWithoutBrand": "Competition 65+10L Backpack - 75L",
+ "Name": "Deuter Competition 65+10L Backpack - 75L",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/deuter-competition-65-plus-10l-backpack-75l-in-pine-granite~p~660my_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/deuter-competition-65-plus-10l-backpack-75l-in-pine-granite~p~660my_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/deuter-competition-65-plus-10l-backpack-75l-in-pine-granite~p~660my_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/deuter-competition-65-plus-10l-backpack-75l-in-pine-granite~p~660my_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Pine/Granite",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/660my-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/deuter-competition-65-plus-10l-backpack-75l-in-pine-granite~p~660my_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Deep wilderness treks require optimal comfort and space, so put on the Deuter Competition backpack and enjoy adjustable back length that allows for perfect shoulder and hip placement.",
+ "SuggestedRetailPrice": 179.99,
+ "Brand": {
+ "Id": "4061",
+ "Url": "/api/1.0/brand/4061/",
+ "ProductsUrl": "/api/1.0/products/deuter~b~4061/",
+ "LogoSrc": "https://i.stpost.com/deuter-competition-65-plus-10l-backpack-75l~b~4061~160x100.jpg",
+ "Name": "Deuter"
+ },
+ "ListPrice": 99.0,
+ "FinalPrice": 99.0
+ },
+ {
+ "Id": "848HX",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/848hx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/848hx/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848hx/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/848hx/",
+ "ReviewCount": 1,
+ "AverageRating": 4.0
+ },
+ "NameWithoutBrand": "Stir 35L Backpack (For Men)",
+ "Name": "Thule Stir 35L Backpack (For Men)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-stir-35l-backpack-for-men-in-dark-forest~p~848hx_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-stir-35l-backpack-for-men-in-dark-forest~p~848hx_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-stir-35l-backpack-for-men-in-dark-forest~p~848hx_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-stir-35l-backpack-for-men-in-dark-forest~p~848hx_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-35l-backpack-for-men~a~848hx_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-35l-backpack-for-men~a~848hx_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-35l-backpack-for-men~a~848hx_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Dark Forest",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848hx-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-35l-backpack-for-men-in-dark-forest~p~848hx_02~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Dark Shadow",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848hx-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-35l-backpack-for-men-in-dark-shadow~p~848hx_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . The Thule Stir 35L backpack is a superb midsize option for overnight backpacking, climbing and other outdoor sports that require larger amounts of gear than daypacks can handle.",
+ "SuggestedRetailPrice": 120.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-stir-35l-backpack-for-men~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 69.99,
+ "FinalPrice": 69.99
+ },
+ {
+ "Id": "848MH",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/848mh/",
+ "WebUrl": "https://www.sierra.com/product/bounce/848mh/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848mh/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/848mh/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Versant 70L Backpack - Internal Frame (For Women)",
+ "Name": "Thule Versant 70L Backpack - Internal Frame (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mh_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mh_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mh_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mh_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women~a~848mh_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women~a~848mh_3~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women~a~848mh_4~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women~a~848mh_5~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Mazerine Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848mh-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mh_02~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Deep Teal",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848mh-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women-in-deep-teal~p~848mh_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . Thule's Versant 70L backpack is spacious and supportive enough for multi-day backcountry trips and backpacker travel. The female-specific design includes waistbelt and torso adjustability for customizable comfort, access to the spacious main compartment from the top and front, and a three-quarter rain cover with a waterproof bottom liner to protect your gear from the elements.",
+ "SuggestedRetailPrice": 215.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "896MW",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/896mw/",
+ "WebUrl": "https://www.sierra.com/product/bounce/896mw/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896mw/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/896mw/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Kulu 65L Backpack",
+ "Name": "Lowe Alpine Kulu 65L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mw_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mw_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mw_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mw_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~a~896mw_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~a~896mw_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~a~896mw_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Magnetite",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mw-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mw_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . When your next adventure is a plane ride away, this Lowe Alpine Kulu 65L backpack is the perfect travel companion. With its durable construction, expandable lid, adjustable AirMesh back, abundant gear storage and versatile Travel FlipBelt technology, this backpack is designed to ease the stress of travel to remote locations.",
+ "SuggestedRetailPrice": 225.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 79.0,
+ "FinalPrice": 79.0
+ },
+ {
+ "Id": "18DUA",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/18dua/",
+ "WebUrl": "https://www.sierra.com/product/bounce/18dua/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/18dua/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/18dua/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "AC Lite 18 Backpack - Internal Frame (For Men and Women)",
+ "Name": "Deuter AC Lite 18 Backpack - Internal Frame (For Men and Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dua_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dua_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dua_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dua_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women~a~18dua_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women~a~18dua_3~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women~a~18dua_4~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women~a~18dua_5~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Cranberry",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/18dua-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dua_02~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Steel",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/18dua-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women-in-steel~p~18dua_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Enjoy a day on the trail with Deuter's AC Lite 18 backpack, made from durable, water-resistant ripstop fabric with a breathable Aircomfort mesh back system, ergonomic design and plenty of storage space for your gear and other essentials.",
+ "SuggestedRetailPrice": 80.0,
+ "Brand": {
+ "Id": "4061",
+ "Url": "/api/1.0/brand/4061/",
+ "ProductsUrl": "/api/1.0/products/deuter~b~4061/",
+ "LogoSrc": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women~b~4061~160x100.jpg",
+ "Name": "Deuter"
+ },
+ "ListPrice": 49.99,
+ "FinalPrice": 49.99
+ },
+ {
+ "Id": "926WH",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/926wh/",
+ "WebUrl": "https://www.sierra.com/product/bounce/926wh/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/926wh/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/926wh/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Map 3500 Tactical 38L Backpack",
+ "Name": "Kelty Map 3500 Tactical 38L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack-in-black~p~926wh_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack-in-black~p~926wh_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack-in-black~p~926wh_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack-in-black~p~926wh_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack~a~926wh_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack~a~926wh_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack~a~926wh_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Black",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/926wh-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack-in-black~p~926wh_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . This Kelty Map 3500 Tactical backpack hauls your essentials around the block or around the world comfortably and securely.",
+ "SuggestedRetailPrice": 120.0,
+ "Brand": {
+ "Id": "1105",
+ "Url": "/api/1.0/brand/1105/",
+ "ProductsUrl": "/api/1.0/products/kelty~b~1105/",
+ "LogoSrc": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack~b~1105~160x100.jpg",
+ "Name": "Kelty"
+ },
+ "ListPrice": 79.99,
+ "FinalPrice": 79.99
+ },
+ {
+ "Id": "19JDW",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/19jdw/",
+ "WebUrl": "https://www.sierra.com/product/bounce/19jdw/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/19jdw/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/19jdw/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Hydro Trail 10L Hydration Backpack - 3L Reservoir",
+ "Name": "ALPS Mountaineering Hydro Trail 10L Hydration Backpack - 3L Reservoir",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~19jdw_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~19jdw_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~19jdw_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~19jdw_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Gray/Citrus",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/19jdw-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~19jdw_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Whether you're hiking, mountain biking or climbing, ALPS Mountaineering's Hydra Trail hydration pack makes it easy to stay hydrated while you're on the trail. With separate compartments and a ventilating 3D mesh suspension, it comfortably carries everything you need.",
+ "SuggestedRetailPrice": 80.0,
+ "Brand": {
+ "Id": "1156",
+ "Url": "/api/1.0/brand/1156/",
+ "ProductsUrl": "/api/1.0/products/alps-mountaineering~b~1156/",
+ "LogoSrc": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir~b~1156~160x100.jpg",
+ "Name": "ALPS Mountaineering"
+ },
+ "ListPrice": 49.99,
+ "FinalPrice": 49.99
+ },
+ {
+ "Id": "896MV",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/896mv/",
+ "WebUrl": "https://www.sierra.com/product/bounce/896mv/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896mv/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/896mv/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Kulu 65L Backpack",
+ "Name": "Lowe Alpine Kulu 65L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mv_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mv_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mv_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mv_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~a~896mv_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~a~896mv_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Magnetite",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mv-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mv_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . When your next adventure is a plane ride away, this Lowe Alpine Kulu 65L backpack is the perfect travel companion. With its durable construction, expandable lid, adjustable AirMesh back, abundant gear storage and versatile Travel FlipBelt technology, this backpack is designed to ease the stress of travel to remote locations.",
+ "SuggestedRetailPrice": 225.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 79.0,
+ "FinalPrice": 79.0
+ },
+ {
+ "Id": "895DX",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/895dx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/895dx/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/895dx/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/895dx/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "AirZone Velo 25L Backpack",
+ "Name": "Lowe Alpine AirZone Velo 25L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-airzone-velo-25l-backpack-in-marine~p~895dx_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-airzone-velo-25l-backpack-in-marine~p~895dx_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-airzone-velo-25l-backpack-in-marine~p~895dx_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-airzone-velo-25l-backpack-in-marine~p~895dx_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Marine",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/895dx-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-airzone-velo-25l-backpack-in-marine~p~895dx_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . A great choice for days in the saddle, Lowe Alpine's AirZone Velo 25L backpack is made with super-durable TrailShield fabric, AirZone mesh for maximized airflow and a front pocket with a bike tool organizer for quick access if something should happen.",
+ "SuggestedRetailPrice": 140.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-airzone-velo-25l-backpack~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 49.0,
+ "FinalPrice": 49.0
+ },
+ {
+ "Id": "16DXR",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/16dxr/",
+ "WebUrl": "https://www.sierra.com/product/bounce/16dxr/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16dxr/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/16dxr/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Speed 28 L Backpack",
+ "Name": "Dynafit Speed 28 L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/dynafit-speed-28-l-backpack-in-carbon-black~p~16dxr_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/dynafit-speed-28-l-backpack-in-carbon-black~p~16dxr_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/dynafit-speed-28-l-backpack-in-carbon-black~p~16dxr_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/dynafit-speed-28-l-backpack-in-carbon-black~p~16dxr_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/dynafit-speed-28-l-backpack~a~16dxr_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/dynafit-speed-28-l-backpack~a~16dxr_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Carbon/Black",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16dxr-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/dynafit-speed-28-l-backpack-in-carbon-black~p~16dxr_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Dynafit's Speed backpack features a roomy compartment with a full-wrap zipper, an anatomical cut, breathable straps and an air mesh back panel system that makes it ideal for backcountry tours.",
+ "SuggestedRetailPrice": 110.0,
+ "Brand": {
+ "Id": "1364",
+ "Url": "/api/1.0/brand/1364/",
+ "ProductsUrl": "/api/1.0/products/dynafit~b~1364/",
+ "LogoSrc": "https://i.stpost.com/dynafit-speed-28-l-backpack~b~1364~160x100.jpg",
+ "Name": "Dynafit"
+ },
+ "ListPrice": 59.99,
+ "FinalPrice": 59.99
+ },
+ {
+ "Id": "419FF",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/419ff/",
+ "WebUrl": "https://www.sierra.com/product/bounce/419ff/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/419ff/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/419ff/",
+ "ReviewCount": 5,
+ "AverageRating": 3.8
+ },
+ "NameWithoutBrand": "Red Wall 8L Hydration Backpack - 70 oz.",
+ "Name": "Stansport Red Wall 8L Hydration Backpack - 70 oz.",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz-in-black-gray~p~419ff_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz-in-black-gray~p~419ff_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz-in-black-gray~p~419ff_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz-in-black-gray~p~419ff_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz~a~419ff_2~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Black/Gray",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/419ff-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz-in-black-gray~p~419ff_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . A great little hydration pack for day hikes and biking, the Stansport Red Wall 8L hydration backpack has 8 liters of total capacity, which includes a 2-liter hydration reservoir with a no-leak bite valve.",
+ "SuggestedRetailPrice": 29.99,
+ "Brand": {
+ "Id": "33483",
+ "Url": "/api/1.0/brand/33483/",
+ "ProductsUrl": "/api/1.0/products/stansport~b~33483/",
+ "LogoSrc": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz~b~33483~160x100.jpg",
+ "Name": "Stansport"
+ },
+ "ListPrice": 19.99,
+ "FinalPrice": 19.99
+ },
+ {
+ "Id": "936GT",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/936gt/",
+ "WebUrl": "https://www.sierra.com/product/bounce/936gt/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/936gt/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/936gt/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Hydro Trail 10L Hydration Backpack - 3L Reservoir",
+ "Name": "ALPS Mountaineering Hydro Trail 10L Hydration Backpack - 3L Reservoir",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~936gt_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~936gt_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~936gt_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~936gt_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir~a~936gt_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir~a~936gt_3~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Gray/Citrus",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/936gt-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~936gt_02~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Gray/Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/936gt-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-blue~p~936gt_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Whether you're hiking, mountain biking or climbing, ALPS Mountaineering's Hydra Trail hydration pack makes it easy to stay hydrated while you're on the trail. With separate compartments and a ventilating 3D mesh suspension, it comfortably carries everything you need.",
+ "SuggestedRetailPrice": 80.0,
+ "Brand": {
+ "Id": "1156",
+ "Url": "/api/1.0/brand/1156/",
+ "ProductsUrl": "/api/1.0/products/alps-mountaineering~b~1156/",
+ "LogoSrc": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir~b~1156~160x100.jpg",
+ "Name": "ALPS Mountaineering"
+ },
+ "ListPrice": 49.99,
+ "FinalPrice": 49.99
+ },
+ {
+ "Id": "895FA",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/895fa/",
+ "WebUrl": "https://www.sierra.com/product/bounce/895fa/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/895fa/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/895fa/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "AirZone Velo 30L Backpack",
+ "Name": "Lowe Alpine AirZone Velo 30L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack-in-black~p~895fa_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack-in-black~p~895fa_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack-in-black~p~895fa_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack-in-black~p~895fa_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack~a~895fa_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Black",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/895fa-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack-in-black~p~895fa_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . A great choice for days in the saddle or the trail, Lowe Alpine's AirZone Velo 30L backpack is made with super-durable TriShield Dura fabric, AirZone mesh for maximized airflow and a front pocket with a bike tool organizer for quick access if something should happen.",
+ "SuggestedRetailPrice": 140.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 49.0,
+ "FinalPrice": 49.0
+ },
+ {
+ "Id": "20DPX",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/20dpx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/20dpx/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/20dpx/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/20dpx/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Hydra 38 Backpack (For Women)",
+ "Name": "The North Face Hydra 38 Backpack (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women-in-new-taupe-green-four-leaf-clover~p~20dpx_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women-in-new-taupe-green-four-leaf-clover~p~20dpx_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women-in-new-taupe-green-four-leaf-clover~p~20dpx_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women-in-new-taupe-green-four-leaf-clover~p~20dpx_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women~a~20dpx_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women~a~20dpx_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["XS/S"] },
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "New Taupe Green/Four Leaf Clover",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/20dpx-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women-in-new-taupe-green-four-leaf-clover~p~20dpx_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . From day hikes to overnight trips, The North Face's Hydra 38 backpack will hold all your gear without weighing you down. With an ultralight, durable aluminum frame and FlashDry® technology, you can comfortably carry this pack through any terrain.",
+ "SuggestedRetailPrice": 150.0,
+ "Brand": {
+ "Id": "1440",
+ "Url": "/api/1.0/brand/1440/",
+ "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
+ "LogoSrc": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women~b~1440~160x100.jpg",
+ "Name": "The North Face"
+ },
+ "ListPrice": 99.99,
+ "FinalPrice": 99.99
+ },
+ {
+ "Id": "16DXT",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/16dxt/",
+ "WebUrl": "https://www.sierra.com/product/bounce/16dxt/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16dxt/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/16dxt/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Speed 20 L Backpack",
+ "Name": "Dynafit Speed 20 L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/dynafit-speed-20-l-backpack-in-black-cactus~p~16dxt_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/dynafit-speed-20-l-backpack-in-black-cactus~p~16dxt_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/dynafit-speed-20-l-backpack-in-black-cactus~p~16dxt_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/dynafit-speed-20-l-backpack-in-black-cactus~p~16dxt_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/dynafit-speed-20-l-backpack~a~16dxt_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/dynafit-speed-20-l-backpack~a~16dxt_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Black/Cactus",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16dxt-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/dynafit-speed-20-l-backpack-in-black-cactus~p~16dxt_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Made for speed touring ascents, Dynafit's Speed backpack is ultralight-yet-roomy, with plenty of space for safety equipment, and the anatomical design with an airmesh back ensure all-day comfort.",
+ "SuggestedRetailPrice": 100.0,
+ "Brand": {
+ "Id": "1364",
+ "Url": "/api/1.0/brand/1364/",
+ "ProductsUrl": "/api/1.0/products/dynafit~b~1364/",
+ "LogoSrc": "https://i.stpost.com/dynafit-speed-20-l-backpack~b~1364~160x100.jpg",
+ "Name": "Dynafit"
+ },
+ "ListPrice": 59.99,
+ "FinalPrice": 59.99
+ },
+ {
+ "Id": "18DTY",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/18dty/",
+ "WebUrl": "https://www.sierra.com/product/bounce/18dty/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/18dty/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/18dty/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "AC Lite 26L Backpack - Internal Frame (For Men and Women)",
+ "Name": "Deuter AC Lite 26L Backpack - Internal Frame (For Men and Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dty_03~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dty_03~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dty_03~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dty_03~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women~a~18dty_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women~a~18dty_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "03",
+ "ColorName": "Cranberry",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/18dty-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dty_03~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Deuter's AC Lite 26L backpack comfortably carries your supplies for a weekend full of trail exploring. Its Aircomfort three-sided back ventilation system allows you to stay drier longer on the hike.",
+ "SuggestedRetailPrice": 85.0,
+ "Brand": {
+ "Id": "4061",
+ "Url": "/api/1.0/brand/4061/",
+ "ProductsUrl": "/api/1.0/products/deuter~b~4061/",
+ "LogoSrc": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women~b~4061~160x100.jpg",
+ "Name": "Deuter"
+ },
+ "ListPrice": 49.99,
+ "FinalPrice": 49.99
+ },
+ {
+ "Id": "665HT",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/665ht/",
+ "WebUrl": "https://www.sierra.com/product/bounce/665ht/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/665ht/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/665ht/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Amber Adjustable 34L Backpack - Internal Frame (For Women)",
+ "Name": "Gregory Amber Adjustable 34L Backpack - Internal Frame (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women-in-teal-grey~p~665ht_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women-in-teal-grey~p~665ht_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women-in-teal-grey~p~665ht_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women-in-teal-grey~p~665ht_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women~a~665ht_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Teal Grey",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/665ht-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women-in-teal-grey~p~665ht_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Gregory's Amber 34L backpack is made for long days out or light overnight trips. The streamlined design and internal wire frame give it the long-distance comfort and load management required for extended exploration.",
+ "SuggestedRetailPrice": 119.99,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 89.99,
+ "FinalPrice": 89.99
+ },
+ {
+ "Id": "877FF",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/877ff/",
+ "WebUrl": "https://www.sierra.com/product/bounce/877ff/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/877ff/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/877ff/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Amber 60L Backpack - Internal Frame (For Women)",
+ "Name": "Gregory Amber 60L Backpack - Internal Frame (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women-in-chili-pepper-red~p~877ff_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women-in-chili-pepper-red~p~877ff_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women-in-chili-pepper-red~p~877ff_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women-in-chili-pepper-red~p~877ff_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women~a~877ff_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women~a~877ff_3~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women~a~877ff_4~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Chili Pepper Red",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/877ff-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women-in-chili-pepper-red~p~877ff_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Large enough for multi-day backcountry trips, Gregory's Amber 60 backpack capably manages large loads with a TrailFlex wishbone suspension.",
+ "SuggestedRetailPrice": 170.0,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 119.99,
+ "FinalPrice": 119.99
+ },
+ {
+ "Id": "895FF",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/895ff/",
+ "WebUrl": "https://www.sierra.com/product/bounce/895ff/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/895ff/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/895ff/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Ignite 15L Backpack",
+ "Name": "Lowe Alpine Ignite 15L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack-in-auburn~p~895ff_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack-in-auburn~p~895ff_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack-in-auburn~p~895ff_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack-in-auburn~p~895ff_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack~a~895ff_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack~a~895ff_3~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack~a~895ff_4~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack~a~895ff_5~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Auburn",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/895ff-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack-in-auburn~p~895ff_01~160.jpg"
+ },
+ {
+ "ColorCode": "04",
+ "ColorName": "Denim",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/895ff-04.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack-in-denim~p~895ff_04~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . The perfect-sized pack for day hikes, Lowe Alpine's Ignite backpack features a large main compartment for holding your gear, Daisy chain lash points, and padded mesh shoulder straps for carrying comfortably.",
+ "SuggestedRetailPrice": 35.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 19.99,
+ "FinalPrice": 19.99
+ }
+ ]
+}
diff --git a/build/json/sleeping-bags.json b/build/json/sleeping-bags.json
new file mode 100644
index 00000000..5d015123
--- /dev/null
+++ b/build/json/sleeping-bags.json
@@ -0,0 +1,1206 @@
+{
+ "Count": 58,
+ "Page": 1,
+ "PerPage": 24,
+ "NextPageUrl": "/api/1.0/products/s~sleeping-bags/?page=2",
+ "LastPageUrl": "/api/1.0/products/s~sleeping-bags/?page=3",
+ "RefinementsUrl": "/api/1.0/refinements/search~sleeping-bags/",
+ "Title": "Search for \"sleeping bags\" ",
+ "Result": [
+ {
+ "Id": "927VJ",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/927vj/",
+ "WebUrl": "https://www.sierra.com/product/bounce/927vj/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/927vj/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/927vj/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "20°F Pinole Sleeping Bag - Mummy (For Men and Women)",
+ "Name": "Mountain Hardwear 20°F Pinole Sleeping Bag - Mummy (For Men and Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women-in-altitude-blue~p~927vj_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women-in-altitude-blue~p~927vj_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women-in-altitude-blue~p~927vj_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women-in-altitude-blue~p~927vj_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women~a~927vj_2~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["L"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Altitude Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/927vj-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women-in-altitude-blue~p~927vj_01~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Dark Army",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/927vj-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women-in-dark-army~p~927vj_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . From spring to summer to fall, Mountain Hardwear's 20° F Pinole sleeping bag delivers away-from-home comfort with its Thermal.Q synthetic insulation, tailored hood for sealing in heat and comfort footbox for just-right wiggle room.",
+ "SuggestedRetailPrice": 130,
+ "Brand": {
+ "Id": "13530",
+ "Url": "/api/1.0/brand/13530/",
+ "ProductsUrl": "/api/1.0/products/mountain-hardwear~b~13530/",
+ "LogoSrc": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women~b~13530~160x100.jpg",
+ "Name": "Mountain Hardwear"
+ },
+ "ListPrice": 99.99,
+ "FinalPrice": 99.99
+ },
+ {
+ "Id": "21KMF",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/21kmf/",
+ "WebUrl": "https://www.sierra.com/product/bounce/21kmf/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/21kmf/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/21kmf/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "30°F Mavericks Double Wide Sleeping Bag - Square",
+ "Name": "Marmot 30°F Mavericks Double Wide Sleeping Bag - Square",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square-in-golden-copper-dark-olive~p~21kmf_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square-in-golden-copper-dark-olive~p~21kmf_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square-in-golden-copper-dark-olive~p~21kmf_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square-in-golden-copper-dark-olive~p~21kmf_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square~a~21kmf_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["LH"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Golden Copper/Dark Olive",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/21kmf-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square-in-golden-copper-dark-olive~p~21kmf_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Designed to share with your special someone, this Marmot Mavericks double wide sleeping bag also zips apart to become two individual bags. Fortified with SpiraFil synthetic insulation for optimal warmth and comfort on chilly nights.",
+ "SuggestedRetailPrice": 212,
+ "Brand": {
+ "Id": "1308",
+ "Url": "/api/1.0/brand/1308/",
+ "ProductsUrl": "/api/1.0/products/marmot~b~1308/",
+ "LogoSrc": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square~b~1308~160x100.jpg",
+ "Name": "Marmot"
+ },
+ "ListPrice": 149.99,
+ "FinalPrice": 149.99
+ },
+ {
+ "Id": "640GU",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/640gu/",
+ "WebUrl": "https://www.sierra.com/product/bounce/640gu/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/640gu/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/640gu/",
+ "ReviewCount": 1,
+ "AverageRating": 1
+ },
+ "NameWithoutBrand": "SpeedValve NeoAir® Camper SV Sleeping Pad - Inflatable, Extra-Large",
+ "Name": "Therm-a-Rest SpeedValve NeoAir® Camper SV Sleeping Pad - Inflatable, Extra-Large",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/therm-a-rest-speedvalve-neoair-camper-sv-sleeping-pad-inflatable-extra-large-in-blue~p~640gu_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/therm-a-rest-speedvalve-neoair-camper-sv-sleeping-pad-inflatable-extra-large-in-blue~p~640gu_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/therm-a-rest-speedvalve-neoair-camper-sv-sleeping-pad-inflatable-extra-large-in-blue~p~640gu_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/therm-a-rest-speedvalve-neoair-camper-sv-sleeping-pad-inflatable-extra-large-in-blue~p~640gu_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/640gu-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/therm-a-rest-speedvalve-neoair-camper-sv-sleeping-pad-inflatable-extra-large-in-blue~p~640gu_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Exceptionally compact, lightweight and with ultra-fast inflation and deflation, the Therm-A-Rest SpeedValve Camper SV sleeping pad is a deluxe base camp air mattress with NeoAir® construction for added warmth and stability.",
+ "SuggestedRetailPrice": 129.99,
+ "Brand": {
+ "Id": "3177",
+ "Url": "/api/1.0/brand/3177/",
+ "ProductsUrl": "/api/1.0/products/therm-a-rest~b~3177/",
+ "LogoSrc": "https://i.stpost.com/therm-a-rest-speedvalve-neoair-camper-sv-sleeping-pad-inflatable-extra-large~b~3177~160x100.jpg",
+ "Name": "Therm-a-Rest"
+ },
+ "ListPrice": 49,
+ "FinalPrice": 49
+ },
+ {
+ "Id": "861PY",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/861py/",
+ "WebUrl": "https://www.sierra.com/product/bounce/861py/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/861py/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/861py/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "50°F Rambler Sleeping Bag - Semi-Rectangular (For Men and Women)",
+ "Name": "Kelty 50°F Rambler Sleeping Bag - Semi-Rectangular (For Men and Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-green-apple~p~861py_03~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-green-apple~p~861py_03~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-green-apple~p~861py_03~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-green-apple~p~861py_03~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women~a~861py_2~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women~a~861py_3~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women~a~861py_4~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "LENGTH": ["REG"],
+ "ZIPPER": ["R"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "03",
+ "ColorName": "Green Apple",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/861py-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-green-apple~p~861py_03~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Fire Orange",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/861py-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-fire-orange~p~861py_02~160.jpg"
+ },
+ {
+ "ColorCode": "04",
+ "ColorName": "Red Sand",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/861py-04.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-red-sand~p~861py_04~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Paradise Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/861py-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-paradise-blue~p~861py_01~160.jpg"
+ },
+ {
+ "ColorCode": "05",
+ "ColorName": "Sycamore/Fire Orange",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/861py-05.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-sycamore-fire-orange~p~861py_05~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Kelty's 50°F Rambler sleeping bag features a semi-rectangular design that keeps you comfortably warm (or cool) in mild temperatures.",
+ "SuggestedRetailPrice": 50,
+ "Brand": {
+ "Id": "1105",
+ "Url": "/api/1.0/brand/1105/",
+ "ProductsUrl": "/api/1.0/products/kelty~b~1105/",
+ "LogoSrc": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women~b~1105~160x100.jpg",
+ "Name": "Kelty"
+ },
+ "ListPrice": 34.99,
+ "FinalPrice": 34.99
+ },
+ {
+ "Id": "16PWY",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/16pwy/",
+ "WebUrl": "https://www.sierra.com/product/bounce/16pwy/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16pwy/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/16pwy/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "Static V2 Sleeping Pad - Inflatable",
+ "Name": "Klymit Static V2 Sleeping Pad - Inflatable",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable-in-green~p~16pwy_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable-in-green~p~16pwy_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable-in-green~p~16pwy_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable-in-green~p~16pwy_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable~a~16pwy_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Green",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16pwy-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable-in-green~p~16pwy_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Rest comfortably on the trail with Klymit's Static V2 sleeping pad, featuring a lightweight, compact design with ergonomic V-chambers that support your pressure points and maximize warmth.",
+ "SuggestedRetailPrice": 55,
+ "Brand": {
+ "Id": "4173",
+ "Url": "/api/1.0/brand/4173/",
+ "ProductsUrl": "/api/1.0/products/klymit~b~4173/",
+ "LogoSrc": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable~b~4173~160x100.jpg",
+ "Name": "Klymit"
+ },
+ "ListPrice": 39.99,
+ "FinalPrice": 39.99
+ },
+ {
+ "Id": "14GVH",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/14gvh/",
+ "WebUrl": "https://www.sierra.com/product/bounce/14gvh/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/14gvh/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/14gvh/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "20°F Kenosha Down Sleeping Bag - 650 Fill Power, Mummy (For Men and Women)",
+ "Name": "Marmot 20°F Kenosha Down Sleeping Bag - 650 Fill Power, Mummy (For Men and Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women-in-green-lichen-green-gulch~p~14gvh_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women-in-green-lichen-green-gulch~p~14gvh_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women-in-green-lichen-green-gulch~p~14gvh_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women-in-green-lichen-green-gulch~p~14gvh_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women~a~14gvh_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["L"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Green Lichen/Green Gulch",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/14gvh-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women-in-green-lichen-green-gulch~p~14gvh_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Sleep under the stars with Marmot's Kenosha sleeping bag, fortified with 650 fill power down insulation for ultimate comfort and warmth.",
+ "SuggestedRetailPrice": 260,
+ "Brand": {
+ "Id": "1308",
+ "Url": "/api/1.0/brand/1308/",
+ "ProductsUrl": "/api/1.0/products/marmot~b~1308/",
+ "LogoSrc": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women~b~1308~160x100.jpg",
+ "Name": "Marmot"
+ },
+ "ListPrice": 189.99,
+ "FinalPrice": 189.99
+ },
+ {
+ "Id": "621CP",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/621cp/",
+ "WebUrl": "https://www.sierra.com/product/bounce/621cp/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/621cp/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/621cp/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "30°F Trestles Elite Sleeping Bag (For Women)",
+ "Name": "Marmot 30°F Trestles Elite Sleeping Bag (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/marmot-30-f-trestles-elite-sleeping-bag-for-women-in-turf-green-garden-green~p~621cp_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/marmot-30-f-trestles-elite-sleeping-bag-for-women-in-turf-green-garden-green~p~621cp_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/marmot-30-f-trestles-elite-sleeping-bag-for-women-in-turf-green-garden-green~p~621cp_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/marmot-30-f-trestles-elite-sleeping-bag-for-women-in-turf-green-garden-green~p~621cp_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {
+ "HAND": ["LH"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Turf Green/Garden Green",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/621cp-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/marmot-30-f-trestles-elite-sleeping-bag-for-women-in-turf-green-garden-green~p~621cp_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Marmot's 30°F Trestles Elite sleeping bag promises to keep you toasty-warm in near-freezing weather with HL-ElixR® synthetic insulation that's a smart combination of three fibers to efficiently trap heat, maintain loft and feel soft and comfortable.",
+ "SuggestedRetailPrice": 104.99,
+ "Brand": {
+ "Id": "1308",
+ "Url": "/api/1.0/brand/1308/",
+ "ProductsUrl": "/api/1.0/products/marmot~b~1308/",
+ "LogoSrc": "https://i.stpost.com/marmot-30-f-trestles-elite-sleeping-bag-for-women~b~1308~160x100.jpg",
+ "Name": "Marmot"
+ },
+ "ListPrice": 79.99,
+ "FinalPrice": 79.99
+ },
+ {
+ "Id": "10HGH",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/10hgh/",
+ "WebUrl": "https://www.sierra.com/product/bounce/10hgh/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/10hgh/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/10hgh/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "50°F Gormsson Sleeping Bag - Mummy, Long",
+ "Name": "Nordisk 50°F Gormsson Sleeping Bag - Mummy, Long",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long-in-limoges-blue~p~10hgh_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long-in-limoges-blue~p~10hgh_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long-in-limoges-blue~p~10hgh_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long-in-limoges-blue~p~10hgh_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long~a~10hgh_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["L"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Limoges Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/10hgh-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long-in-limoges-blue~p~10hgh_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . Recharge under the stars with Nordisk's 50°F Gormsson sleeping bag, made from smooth, water-resistant nylon with high-loft synthetic insulation and a roomy footbox for maximum comfort.",
+ "SuggestedRetailPrice": 190,
+ "Brand": {
+ "Id": "33133",
+ "Url": "/api/1.0/brand/33133/",
+ "ProductsUrl": "/api/1.0/products/nordisk~b~33133/",
+ "LogoSrc": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long~b~33133~160x100.jpg",
+ "Name": "Nordisk"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "14GVF",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/14gvf/",
+ "WebUrl": "https://www.sierra.com/product/bounce/14gvf/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/14gvf/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/14gvf/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "5°F Rampart Down Sleeping Bag - 650 Fill, Mummy (For Men and Women)",
+ "Name": "Marmot 5°F Rampart Down Sleeping Bag - 650 Fill, Mummy (For Men and Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women-in-rusted-orange-mahogany~p~14gvf_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women-in-rusted-orange-mahogany~p~14gvf_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women-in-rusted-orange-mahogany~p~14gvf_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women-in-rusted-orange-mahogany~p~14gvf_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women~a~14gvf_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["L"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Rusted Orange/Mahogany",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/14gvf-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women-in-rusted-orange-mahogany~p~14gvf_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Sleep under the stars with Marmot's Rampart sleeping bag, fortified with 650 fill power down insulation for ultimate comfort and warmth.",
+ "SuggestedRetailPrice": 315,
+ "Brand": {
+ "Id": "1308",
+ "Url": "/api/1.0/brand/1308/",
+ "ProductsUrl": "/api/1.0/products/marmot~b~1308/",
+ "LogoSrc": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women~b~1308~160x100.jpg",
+ "Name": "Marmot"
+ },
+ "ListPrice": 229.99,
+ "FinalPrice": 229.99
+ },
+ {
+ "Id": "14HDK",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/14hdk/",
+ "WebUrl": "https://www.sierra.com/product/bounce/14hdk/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/14hdk/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/14hdk/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "45° F Traveler Sleeping Bag - Mummy (For Men and Women)",
+ "Name": "Marmot 45° F Traveler Sleeping Bag - Mummy (For Men and Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women-in-redstone~p~14hdk_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women-in-redstone~p~14hdk_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women-in-redstone~p~14hdk_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women-in-redstone~p~14hdk_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women~a~14hdk_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["L"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Redstone",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/14hdk-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women-in-redstone~p~14hdk_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . The super-packable design of Marmot's 45°F Traveler sleeping bag makes it perfect for world travel and bicycle touring. Highly compressible, yet lofty Spirafil® insulation retains warmth when wet.",
+ "SuggestedRetailPrice": 110,
+ "Brand": {
+ "Id": "1308",
+ "Url": "/api/1.0/brand/1308/",
+ "ProductsUrl": "/api/1.0/products/marmot~b~1308/",
+ "LogoSrc": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women~b~1308~160x100.jpg",
+ "Name": "Marmot"
+ },
+ "ListPrice": 79.99,
+ "FinalPrice": 79.99
+ },
+ {
+ "Id": "10HKN",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/10hkn/",
+ "WebUrl": "https://www.sierra.com/product/bounce/10hkn/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/10hkn/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/10hkn/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "14°F Oscar Sleeping Bag - Mummy, Long",
+ "Name": "Nordisk 14°F Oscar Sleeping Bag - Mummy, Long",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hkn_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hkn_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hkn_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hkn_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long~a~10hkn_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["L"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Mustard",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/10hkn-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hkn_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . Stay warm while camping in extreme conditions with Nordisk's 14°F Oscar sleeping bag, featuring a body-hugging mummy shape with Northguard S-Core insulation and an innovative tubic construction that traps air in for even heat distribution while pushing moisture out for maximum warmth and comfort.",
+ "SuggestedRetailPrice": 400,
+ "Brand": {
+ "Id": "33133",
+ "Url": "/api/1.0/brand/33133/",
+ "ProductsUrl": "/api/1.0/products/nordisk~b~33133/",
+ "LogoSrc": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long~b~33133~160x100.jpg",
+ "Name": "Nordisk"
+ },
+ "ListPrice": 279.99,
+ "FinalPrice": 279.99
+ },
+ {
+ "Id": "14GVG",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/14gvg/",
+ "WebUrl": "https://www.sierra.com/product/bounce/14gvg/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/14gvg/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/14gvg/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "20°F Sawatch Down Sleeping Bag - 650 Fill Power, Mummy (For Women)",
+ "Name": "Marmot 20°F Sawatch Down Sleeping Bag - 650 Fill Power, Mummy (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women-in-ocean-sea-scape~p~14gvg_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women-in-ocean-sea-scape~p~14gvg_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women-in-ocean-sea-scape~p~14gvg_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women-in-ocean-sea-scape~p~14gvg_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women~a~14gvg_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["L"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Ocean/Sea Scape",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/14gvg-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women-in-ocean-sea-scape~p~14gvg_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Sleep under the stars with Marmot's Sawatch sleeping bag, fortified with 650 fill power down insulation for ultimate comfort and warmth.",
+ "SuggestedRetailPrice": 260,
+ "Brand": {
+ "Id": "1308",
+ "Url": "/api/1.0/brand/1308/",
+ "ProductsUrl": "/api/1.0/products/marmot~b~1308/",
+ "LogoSrc": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women~b~1308~160x100.jpg",
+ "Name": "Marmot"
+ },
+ "ListPrice": 133,
+ "FinalPrice": 133
+ },
+ {
+ "Id": "16PWT",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/16pwt/",
+ "WebUrl": "https://www.sierra.com/product/bounce/16pwt/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16pwt/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/16pwt/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "Cloud Sleeping Pad - Inflatable",
+ "Name": "PEAK SLUMBER Cloud Sleeping Pad - Inflatable",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable-in-blue~p~16pwt_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable-in-blue~p~16pwt_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable-in-blue~p~16pwt_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable-in-blue~p~16pwt_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable~a~16pwt_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16pwt-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable-in-blue~p~16pwt_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Rest comfortably in the Great Outdoors with Peak Slumber's Cloud sleeping pad, made from durable ripstop fabric with a supportive, easy-to-inflate design.",
+ "SuggestedRetailPrice": 50,
+ "Brand": {
+ "Id": "39056",
+ "Url": "/api/1.0/brand/39056/",
+ "ProductsUrl": "/api/1.0/products/peak-slumber~b~39056/",
+ "LogoSrc": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable~b~39056~160x100.jpg",
+ "Name": "PEAK SLUMBER"
+ },
+ "ListPrice": 34.99,
+ "FinalPrice": 34.99
+ },
+ {
+ "Id": "10HXY",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/10hxy/",
+ "WebUrl": "https://www.sierra.com/product/bounce/10hxy/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/10hxy/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/10hxy/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "-4°F Oscar Sleeping Bag - Mummy, Long",
+ "Name": "Nordisk -4°F Oscar Sleeping Bag - Mummy, Long",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hxy_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hxy_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hxy_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hxy_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long~a~10hxy_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["L"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Mustard",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/10hxy-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hxy_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . Stay warm while camping in extreme conditions with Nordisk's -4°F Oscar sleeping bag, featuring a body-hugging mummy shape with Northguard S-Core insulation and an innovative tubic construction that traps air in for even heat distribution while pushing moisture out for maximum warmth and comfort.",
+ "SuggestedRetailPrice": 410,
+ "Brand": {
+ "Id": "33133",
+ "Url": "/api/1.0/brand/33133/",
+ "ProductsUrl": "/api/1.0/products/nordisk~b~33133/",
+ "LogoSrc": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long~b~33133~160x100.jpg",
+ "Name": "Nordisk"
+ },
+ "ListPrice": 279.99,
+ "FinalPrice": 279.99
+ },
+ {
+ "Id": "832UD",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/832ud/",
+ "WebUrl": "https://www.sierra.com/product/bounce/832ud/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/832ud/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/832ud/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "Insulated Static V Sleeping Pad - Inflatable",
+ "Name": "Klymit Insulated Static V Sleeping Pad - Inflatable",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/klymit-insulated-static-v-sleeping-pad-inflatable-in-kings-camo~p~832ud_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/klymit-insulated-static-v-sleeping-pad-inflatable-in-kings-camo~p~832ud_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/klymit-insulated-static-v-sleeping-pad-inflatable-in-kings-camo~p~832ud_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/klymit-insulated-static-v-sleeping-pad-inflatable-in-kings-camo~p~832ud_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Kings Camo",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/832ud-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/klymit-insulated-static-v-sleeping-pad-inflatable-in-kings-camo~p~832ud_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . With added R-value for top-drawer performance, Klymit‘s Insulated Static V sleeping pad harnesses four-season performance for unwinding under the stars on any night of the year. The body-mapped V-chambers limit air movement, and the ergonomic body mapping with dynamic side rails cradles your body all night long.",
+ "SuggestedRetailPrice": 110,
+ "Brand": {
+ "Id": "4173",
+ "Url": "/api/1.0/brand/4173/",
+ "ProductsUrl": "/api/1.0/products/klymit~b~4173/",
+ "LogoSrc": "https://i.stpost.com/klymit-insulated-static-v-sleeping-pad-inflatable~b~4173~160x100.jpg",
+ "Name": "Klymit"
+ },
+ "ListPrice": 79.99,
+ "FinalPrice": 79.99
+ },
+ {
+ "Id": "16PWR",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/16pwr/",
+ "WebUrl": "https://www.sierra.com/product/bounce/16pwr/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16pwr/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/16pwr/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "Static V Luxe Sleeping Pad - Inflatable",
+ "Name": "Klymit Static V Luxe Sleeping Pad - Inflatable",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-rootbeer~p~16pwr_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-rootbeer~p~16pwr_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-rootbeer~p~16pwr_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-rootbeer~p~16pwr_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable~a~16pwr_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Rootbeer",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16pwr-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-rootbeer~p~16pwr_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Enjoy a comfortable night under the stars with Klymit's Static V Luxe sleeping pad, made from durable materials with ergonomic raised V-chambers that support pressure points and maximize warmth -- all in a wider, thicker design.",
+ "SuggestedRetailPrice": 100,
+ "Brand": {
+ "Id": "4173",
+ "Url": "/api/1.0/brand/4173/",
+ "ProductsUrl": "/api/1.0/products/klymit~b~4173/",
+ "LogoSrc": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable~b~4173~160x100.jpg",
+ "Name": "Klymit"
+ },
+ "ListPrice": 69.99,
+ "FinalPrice": 69.99
+ },
+ {
+ "Id": "858YV",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/858yv/",
+ "WebUrl": "https://www.sierra.com/product/bounce/858yv/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/858yv/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/858yv/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "Core Sleeping Pad - 72x20x3.5”",
+ "Name": "ALPS Mountaineering Core Sleeping Pad - 72x20x3.5”",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35-in-tangerine~p~858yv_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35-in-tangerine~p~858yv_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35-in-tangerine~p~858yv_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35-in-tangerine~p~858yv_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Tangerine",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/858yv-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35-in-tangerine~p~858yv_01~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Gray",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/858yv-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35-in-gray~p~858yv_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . With its ultralight weight, horizontal tube design and long-lasting ripstop nylon construction, the ALPS Mountaineering Core sleeping pad is a trusty companion for overnight ventures into the backcountry.",
+ "SuggestedRetailPrice": 80,
+ "Brand": {
+ "Id": "1156",
+ "Url": "/api/1.0/brand/1156/",
+ "ProductsUrl": "/api/1.0/products/alps-mountaineering~b~1156/",
+ "LogoSrc": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35~b~1156~160x100.jpg",
+ "Name": "ALPS Mountaineering"
+ },
+ "ListPrice": 39,
+ "FinalPrice": 39
+ },
+ {
+ "Id": "16PWX",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/16pwx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/16pwx/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16pwx/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/16pwx/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "Static V Luxe Sleeping Pad - Inflatable",
+ "Name": "Klymit Static V Luxe Sleeping Pad - Inflatable",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-stone-grey~p~16pwx_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-stone-grey~p~16pwx_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-stone-grey~p~16pwx_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-stone-grey~p~16pwx_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable~a~16pwx_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Stone Grey",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16pwx-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-stone-grey~p~16pwx_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Enjoy a comfortable night under the stars with Klymit's Static V Luxe sleeping pad, made from durable materials with ergonomic raised V-chambers that support pressure points and maximize warmth -- all in a wider, thicker design.",
+ "SuggestedRetailPrice": 100,
+ "Brand": {
+ "Id": "4173",
+ "Url": "/api/1.0/brand/4173/",
+ "ProductsUrl": "/api/1.0/products/klymit~b~4173/",
+ "LogoSrc": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable~b~4173~160x100.jpg",
+ "Name": "Klymit"
+ },
+ "ListPrice": 69.99,
+ "FinalPrice": 69.99
+ },
+ {
+ "Id": "843YW",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/843yw/",
+ "WebUrl": "https://www.sierra.com/product/bounce/843yw/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/843yw/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/843yw/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "20°F KSB Down Sleeping Bag - Mummy, 650 Fill Power",
+ "Name": "Klymit 20°F KSB Down Sleeping Bag - Mummy, 650 Fill Power",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power-in-black~p~843yw_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power-in-black~p~843yw_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power-in-black~p~843yw_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power-in-black~p~843yw_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power~a~843yw_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Black",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/843yw-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power-in-black~p~843yw_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . When the temps dip below freezing, Klymit's 20°F KSB down sleeping bag surrounds your entire body in supersoft, fluffy down to trap body heat while you snooze.",
+ "SuggestedRetailPrice": 250,
+ "Brand": {
+ "Id": "4173",
+ "Url": "/api/1.0/brand/4173/",
+ "ProductsUrl": "/api/1.0/products/klymit~b~4173/",
+ "LogoSrc": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power~b~4173~160x100.jpg",
+ "Name": "Klymit"
+ },
+ "ListPrice": 179.99,
+ "FinalPrice": 179.99
+ },
+ {
+ "Id": "10HPY",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/10hpy/",
+ "WebUrl": "https://www.sierra.com/product/bounce/10hpy/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/10hpy/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/10hpy/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "28°F Gorm Sleeping Bag - Mummy, Long",
+ "Name": "Nordisk 28°F Gorm Sleeping Bag - Mummy, Long",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long-in-limoges-blue~p~10hpy_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long-in-limoges-blue~p~10hpy_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long-in-limoges-blue~p~10hpy_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long-in-limoges-blue~p~10hpy_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long~a~10hpy_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["L"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Limoges Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/10hpy-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long-in-limoges-blue~p~10hpy_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . Recharge on cold nights with Nordisk's 28°F Gorm sleeping bag, made from smooth nylon with warm, durable synthetic insulation and a wider shape for maximum comfort.",
+ "SuggestedRetailPrice": 240,
+ "Brand": {
+ "Id": "33133",
+ "Url": "/api/1.0/brand/33133/",
+ "ProductsUrl": "/api/1.0/products/nordisk~b~33133/",
+ "LogoSrc": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long~b~33133~160x100.jpg",
+ "Name": "Nordisk"
+ },
+ "ListPrice": 149.99,
+ "FinalPrice": 149.99
+ },
+ {
+ "Id": "985KF",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/985kf/",
+ "WebUrl": "https://www.sierra.com/product/bounce/985kf/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/985kf/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/985kf/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "20°F Guide Sleeping Bag - Mummy (For Women)",
+ "Name": "The North Face 20°F Guide Sleeping Bag - Mummy (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women-in-high-rise-grey-hyper-blue~p~985kf_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women-in-high-rise-grey-hyper-blue~p~985kf_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women-in-high-rise-grey-hyper-blue~p~985kf_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women-in-high-rise-grey-hyper-blue~p~985kf_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women~a~985kf_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["R"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "High Rise Grey/Hyper Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/985kf-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women-in-high-rise-grey-hyper-blue~p~985kf_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Get durable-yet-lightweight warmth for comfortable slumbers under the stars in The North Face's Guide sleeping bag, designed with toasty HeatSeeker® insulation in a water-resistant ripstop shell.",
+ "SuggestedRetailPrice": 209,
+ "Brand": {
+ "Id": "1440",
+ "Url": "/api/1.0/brand/1440/",
+ "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
+ "LogoSrc": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women~b~1440~160x100.jpg",
+ "Name": "The North Face"
+ },
+ "ListPrice": 149.99,
+ "FinalPrice": 149.99
+ },
+ {
+ "Id": "985TP",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/985tp/",
+ "WebUrl": "https://www.sierra.com/product/bounce/985tp/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/985tp/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/985tp/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "20°F Dolomite Double Sleeping Bag - Rectangular",
+ "Name": "The North Face 20°F Dolomite Double Sleeping Bag - Rectangular",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular-in-cosmic-blue-zinc-grey~p~985tp_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular-in-cosmic-blue-zinc-grey~p~985tp_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular-in-cosmic-blue-zinc-grey~p~985tp_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular-in-cosmic-blue-zinc-grey~p~985tp_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular~a~985tp_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["RH"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Cosmic Blue/Zinc Grey",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/985tp-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular-in-cosmic-blue-zinc-grey~p~985tp_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Snuggle up with your special someone under the stars with The North Face's 20°F Dolomite double sleeping bag, featuring durable polyester ripstop construction, toasty HeatSeeker® Eco synthetic insulation and a roomy interior.",
+ "SuggestedRetailPrice": 159,
+ "Brand": {
+ "Id": "1440",
+ "Url": "/api/1.0/brand/1440/",
+ "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
+ "LogoSrc": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular~b~1440~160x100.jpg",
+ "Name": "The North Face"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "268GC",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/268gc/",
+ "WebUrl": "https://www.sierra.com/product/bounce/268gc/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/268gc/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/268gc/",
+ "ReviewCount": 1,
+ "AverageRating": 3
+ },
+ "NameWithoutBrand": "Trail King Sleeping Pad - Self-Inflating, Regular",
+ "Name": "Therm-a-Rest Trail King Sleeping Pad - Self-Inflating, Regular",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/therm-a-rest-trail-king-sleeping-pad-self-inflating-regular-in-yellow-green~p~268gc_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/therm-a-rest-trail-king-sleeping-pad-self-inflating-regular-in-yellow-green~p~268gc_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/therm-a-rest-trail-king-sleeping-pad-self-inflating-regular-in-yellow-green~p~268gc_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/therm-a-rest-trail-king-sleeping-pad-self-inflating-regular-in-yellow-green~p~268gc_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Yellow/Green",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/268gc-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/therm-a-rest-trail-king-sleeping-pad-self-inflating-regular-in-yellow-green~p~268gc_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "2nds . Designed to inflate in a matter of seconds, Therm-a-Rest's Trail King SV sleeping pad offers unprecedented ease-of-use. Backpackers will appreciate 2.5" of ultra-supportive loft and the auto-reversing SpeedValve that lets you deflate the mattress in a flash as well.",
+ "SuggestedRetailPrice": 129.95,
+ "Brand": {
+ "Id": "3177",
+ "Url": "/api/1.0/brand/3177/",
+ "ProductsUrl": "/api/1.0/products/therm-a-rest~b~3177/",
+ "LogoSrc": "https://i.stpost.com/therm-a-rest-trail-king-sleeping-pad-self-inflating-regular~b~3177~160x100.jpg",
+ "Name": "Therm-a-Rest"
+ },
+ "ListPrice": 49,
+ "FinalPrice": 49
+ },
+ {
+ "Id": "665JR",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/665jr/",
+ "WebUrl": "https://www.sierra.com/product/bounce/665jr/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/665jr/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/665jr/",
+ "ReviewCount": 1,
+ "AverageRating": 1
+ },
+ "NameWithoutBrand": "Regular 375 Foam Sleeping Pad",
+ "Name": "ALPS Mountaineering Regular 375 Foam Sleeping Pad",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/alps-mountaineering-regular-375-foam-sleeping-pad-in-green~p~665jr_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/alps-mountaineering-regular-375-foam-sleeping-pad-in-green~p~665jr_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/alps-mountaineering-regular-375-foam-sleeping-pad-in-green~p~665jr_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/alps-mountaineering-regular-375-foam-sleeping-pad-in-green~p~665jr_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Green",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/665jr-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-regular-375-foam-sleeping-pad-in-green~p~665jr_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . ALPS Mountaineering Regular 375 sleeping pad is a dense, textured foam mat that protects and insulates against cold, uneven surfaces.",
+ "SuggestedRetailPrice": 16.99,
+ "Brand": {
+ "Id": "1156",
+ "Url": "/api/1.0/brand/1156/",
+ "ProductsUrl": "/api/1.0/products/alps-mountaineering~b~1156/",
+ "LogoSrc": "https://i.stpost.com/alps-mountaineering-regular-375-foam-sleeping-pad~b~1156~160x100.jpg",
+ "Name": "ALPS Mountaineering"
+ },
+ "ListPrice": 12.99,
+ "FinalPrice": 12.99
+ }
+ ]
+}
diff --git a/build/json/tents.json b/build/json/tents.json
new file mode 100644
index 00000000..d24bd8bc
--- /dev/null
+++ b/build/json/tents.json
@@ -0,0 +1,137 @@
+[
+ {
+ "Id": "880RR",
+ "NameWithoutBrand": "Ajax Tent - 3-Person, 3-Season",
+ "Name": "Marmot Ajax Tent - 3-Person, 3-Season",
+ "Image": "../images/tents/marmot-ajax-tent-3-person-3-season-in-pale-pumpkin-terracotta~p~880rr_01~320.jpg",
+
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Pale Pumpkin/Terracotta"
+ }
+ ],
+ "DescriptionHtmlSimple": "Get out and enjoy nature with Marmot's Ajax tent, featuring a smart design with durable, waterproof construction and two doors for easy access.",
+ "SuggestedRetailPrice": 300.0,
+ "Brand": {
+ "Id": "1308",
+ "LogoSrc": "../images/logos/marmot-160x100.jpg",
+ "Name": "Marmot"
+ },
+ "ListPrice": 199.99,
+ "FinalPrice": 199.99
+ },
+ {
+ "Id": "985RF",
+ "NameWithoutBrand": "Talus Tent - 4-Person, 3-Season",
+ "Name": "The North Face Talus Tent - 4-Person, 3-Season",
+ "Image": "../images/tents/the-north-face-talus-tent-4-person-3-season-in-golden-oak-saffron-yellow~p~985rf_01~320.jpg",
+
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Golden Oak/Saffron Yellow"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Enjoy a fun night under stars with your favorite people in The North Face's Talus four-person tent, featuring durable construction with a roomy interior, an advanced DAC Featherlite NSL pole system and an easy to pitch design.",
+ "SuggestedRetailPrice": 299.0,
+ "Brand": {
+ "Id": "1440",
+ "Name": "The North Face"
+ },
+ "ListPrice": 199.99,
+ "FinalPrice": 199.99
+ },
+ {
+ "Id": "989CG",
+ "NameWithoutBrand": "Talus Tent - 3-Person, 3-Season",
+ "Name": "The North Face Talus Tent - 3-Person, 3-Season",
+ "Image": "../images/tents/the-north-face-talus-tent-3-person-3-season-in-golden-oak-saffron-yellow~p~989cg_01~320.jpg",
+
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Golden Oak/Saffron Yellow"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Enjoy a fun night under stars with your favorite people in The North Face's Talus three-person tent, featuring durable construction with a roomy interior, an advanced DAC Featherlite NSL pole system and an easy to pitch design.",
+ "SuggestedRetailPrice": 270.0,
+ "Brand": {
+ "Id": "1440",
+ "Name": "The North Face"
+ },
+ "ListPrice": 179.99,
+ "FinalPrice": 179.99
+ },
+ {
+ "Id": "985PR",
+ "NameWithoutBrand": "Alpine Guide Tent - 3-Person, 4-Season",
+ "Name": "The North Face Alpine Guide Tent - 3-Person, 4-Season",
+ "Image": "../images/tents/the-north-face-alpine-guide-tent-3-person-4-season-in-canary-yellow-high-rise-grey~p~985pr_01~320.jpg",
+
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Canary Yellow/High Rise Grey"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Be ready for any outdoor adventure in low elevations and high-alpine environments alike with the hybrid design of The North Face's Alpine Guide four-season tent. It is made from durable, waterproof nylon ripstop with an advanced DAC® Featherlite NSL pole system and an easy to pitch design.",
+ "SuggestedRetailPrice": 489.0,
+ "Brand": {
+ "Id": "1440",
+ "Name": "The North Face"
+ },
+ "ListPrice": 349.99,
+ "FinalPrice": 349.99
+ },
+ {
+ "Id": "880RT",
+ "NameWithoutBrand": "Ajax Tent - 2-Person, 3-Season",
+ "Name": "Marmot Ajax Tent - 2-Person, 3-Season",
+ "Image": "../images/tents/marmot-ajax-tent-2-person-3-season-in-pale-pumpkin-terracotta~p~880rt_01~320.jpg",
+
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Pale Pumpkin/Terracotta"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . Get out and enjoy nature with Marmot's Ajax tent, featuring a smart design with durable, waterproof construction and two doors for easy access.",
+ "SuggestedRetailPrice": 275.0,
+ "Brand": {
+ "Id": "1308",
+ "Name": "Marmot"
+ },
+ "ListPrice": 179.99,
+ "FinalPrice": 179.99
+ },
+
+ {
+ "Id": "344YJ",
+ "NameWithoutBrand": "Rimrock Tent - 2-Person, 3-Season",
+ "Name": "Cedar Ridge Rimrock Tent - 2-Person, 3-Season",
+ "IsFamousBrand": false,
+ "Image": "../images/tents/cedar-ridge-rimrock-tent-2-person-3-season-in-rust-clay~p~344yj_01~320.jpg",
+
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Rust/Clay"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Lightweight and ready for adventure, this Cedar Ridge Rimrock tent boasts a weather-ready design that includes a tub-style floor and factory-sealed rain fly .",
+ "SuggestedRetailPrice": 89.99,
+ "Brand": {
+ "Id": "35027",
+ "Name": "Cedar Ridge"
+ },
+ "ListPrice": 69.99,
+ "FinalPrice": 69.99
+ }
+]
diff --git a/build/product_pages/cedar-ridge-rimrock-2.html b/build/product_pages/cedar-ridge-rimrock-2.html
new file mode 100644
index 00000000..270f6ef5
--- /dev/null
+++ b/build/product_pages/cedar-ridge-rimrock-2.html
@@ -0,0 +1,68 @@
+
+
+
+
+
+ Sleep Outside | Cedar Ridge Rimrock 2-person tent
+
+
+
+
+
+
+
+ Cedar Ridge
+ Rimrock Tent - 2-Person, 3-Season
+
+
+ $69.99
+ Rust/Clay
+
+ Lightweight and ready for adventure, this Cedar Ridge Rimrock tent
+ boasts a weather-ready design that includes a tub-style floor and
+ factory-sealed rain fly
+
+
+ Add to Cart
+
+
+
+
+
+
diff --git a/build/product_pages/marmot-ajax-3.html b/build/product_pages/marmot-ajax-3.html
new file mode 100644
index 00000000..b110f2a6
--- /dev/null
+++ b/build/product_pages/marmot-ajax-3.html
@@ -0,0 +1,68 @@
+
+
+
+
+
+ Sleep Outside | Marmot Ajax 3 person tent
+
+
+
+
+
+
+
+ Marmot
+ Ajax Tent - 3-Person, 3-Season
+
+
+ $199.99
+ Pale Pumpkin/Terracotta
+
+ Get out and enjoy nature with Marmot's Ajax tent, featuring a smart
+ design with durable, waterproof construction and two doors for easy
+ access.
+
+
+ Add to Cart
+
+
+
+
+
+
diff --git a/build/product_pages/northface-alpine-3.html b/build/product_pages/northface-alpine-3.html
new file mode 100644
index 00000000..a2645322
--- /dev/null
+++ b/build/product_pages/northface-alpine-3.html
@@ -0,0 +1,69 @@
+
+
+
+
+
+ Sleep Outside | North Face Alpine Guide 3-person tent
+
+
+
+
+
+
+
+ The North Face
+ Alpine Guide Tent - 3-Person, 4-Season
+
+
+ $349.99
+ Canary Yellow/High Rise Grey
+
+ Be ready for any outdoor adventure in low elevations and high-alpine
+ environments alike with the hybrid design of The North Face's Alpine
+ Guide four-season tent. It is made from durable, waterproof
+ Featherlite NSL pole system and an easy to pitch design.
+
+
+ Add to Cart
+
+
+
+
+
+
diff --git a/build/product_pages/northface-talus-4.html b/build/product_pages/northface-talus-4.html
new file mode 100644
index 00000000..7d36a81d
--- /dev/null
+++ b/build/product_pages/northface-talus-4.html
@@ -0,0 +1,69 @@
+
+
+
+
+
+ Sleep Outside | North Face Talus 4-person tent
+
+
+
+
+
+
+
+ The North Face
+ Talus Tent - 4-Person, 3-Season
+
+
+ $199.99
+ Golden Oak/Saffron Yellow
+
+ Enjoy a fun night under stars with your favorite people in The North
+ Face's Talus four-person tent, featuring durable construction with a
+ roomy interior, an advanced DAC Featherlite NSL pole system and an
+ easy to pitch design.
+
+
+ Add to Cart
+
+
+
+
+
+
diff --git a/package-lock.json b/package-lock.json
index f1fb2818..54256f96 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,9864 +1,6 @@
{
- "name": "outside",
- "version": "1.0.0",
- "lockfileVersion": 1,
+ "name": "WDD330",
+ "lockfileVersion": 2,
"requires": true,
- "dependencies": {
- "@babel/cli": {
- "version": "7.12.8",
- "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.12.8.tgz",
- "integrity": "sha512-/6nQj11oaGhLmZiuRUfxsujiPDc9BBReemiXgIbxc+M5W+MIiFKYwvNDJvBfnGKNsJTKbUfEheKc9cwoPHAVQA==",
- "dev": true,
- "requires": {
- "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents",
- "chokidar": "^3.4.0",
- "commander": "^4.0.1",
- "convert-source-map": "^1.1.0",
- "fs-readdir-recursive": "^1.1.0",
- "glob": "^7.0.0",
- "lodash": "^4.17.19",
- "make-dir": "^2.1.0",
- "slash": "^2.0.0",
- "source-map": "^0.5.0"
- },
- "dependencies": {
- "commander": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
- "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
- "dev": true
- },
- "make-dir": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
- "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
- "dev": true,
- "requires": {
- "pify": "^4.0.1",
- "semver": "^5.6.0"
- }
- },
- "pify": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
- "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
- "dev": true
- },
- "semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
- "dev": true
- },
- "slash": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz",
- "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==",
- "dev": true
- }
- }
- },
- "@babel/code-frame": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
- "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
- "dev": true,
- "requires": {
- "@babel/highlight": "^7.10.4"
- }
- },
- "@babel/compat-data": {
- "version": "7.12.5",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.5.tgz",
- "integrity": "sha512-DTsS7cxrsH3by8nqQSpFSyjSfSYl57D6Cf4q8dW3LK83tBKBDCkfcay1nYkXq1nIHXnpX8WMMb/O25HOy3h1zg==",
- "dev": true
- },
- "@babel/core": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz",
- "integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.1",
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helpers": "^7.12.1",
- "@babel/parser": "^7.12.3",
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.1",
- "json5": "^2.1.2",
- "lodash": "^4.17.19",
- "resolve": "^1.3.2",
- "semver": "^5.4.1",
- "source-map": "^0.5.0"
- },
- "dependencies": {
- "debug": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
- "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
- "dev": true,
- "requires": {
- "ms": "2.1.2"
- }
- },
- "ms": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
- "dev": true
- },
- "semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
- "dev": true
- },
- "source-map": {
- "version": "0.5.7",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
- "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
- "dev": true
- }
- }
- },
- "@babel/generator": {
- "version": "7.12.5",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
- "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.12.5",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- },
- "dependencies": {
- "source-map": {
- "version": "0.5.7",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
- "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
- "dev": true
- }
- }
- },
- "@babel/helper-annotate-as-pure": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz",
- "integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.10.4"
- }
- },
- "@babel/helper-builder-binary-assignment-operator-visitor": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz",
- "integrity": "sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==",
- "dev": true,
- "requires": {
- "@babel/helper-explode-assignable-expression": "^7.10.4",
- "@babel/types": "^7.10.4"
- }
- },
- "@babel/helper-compilation-targets": {
- "version": "7.12.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz",
- "integrity": "sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==",
- "dev": true,
- "requires": {
- "@babel/compat-data": "^7.12.5",
- "@babel/helper-validator-option": "^7.12.1",
- "browserslist": "^4.14.5",
- "semver": "^5.5.0"
- },
- "dependencies": {
- "semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
- "dev": true
- }
- }
- },
- "@babel/helper-create-class-features-plugin": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz",
- "integrity": "sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==",
- "dev": true,
- "requires": {
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-member-expression-to-functions": "^7.12.1",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/helper-replace-supers": "^7.12.1",
- "@babel/helper-split-export-declaration": "^7.10.4"
- }
- },
- "@babel/helper-create-regexp-features-plugin": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.1.tgz",
- "integrity": "sha512-rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA==",
- "dev": true,
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.10.4",
- "@babel/helper-regex": "^7.10.4",
- "regexpu-core": "^4.7.1"
- }
- },
- "@babel/helper-define-map": {
- "version": "7.10.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz",
- "integrity": "sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==",
- "dev": true,
- "requires": {
- "@babel/helper-function-name": "^7.10.4",
- "@babel/types": "^7.10.5",
- "lodash": "^4.17.19"
- }
- },
- "@babel/helper-explode-assignable-expression": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz",
- "integrity": "sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-function-name": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz",
- "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==",
- "dev": true,
- "requires": {
- "@babel/helper-get-function-arity": "^7.10.4",
- "@babel/template": "^7.10.4",
- "@babel/types": "^7.10.4"
- }
- },
- "@babel/helper-get-function-arity": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz",
- "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.10.4"
- }
- },
- "@babel/helper-hoist-variables": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz",
- "integrity": "sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.10.4"
- }
- },
- "@babel/helper-member-expression-to-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz",
- "integrity": "sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-module-imports": {
- "version": "7.12.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
- "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.12.5"
- }
- },
- "@babel/helper-module-transforms": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
- "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
- "dev": true,
- "requires": {
- "@babel/helper-module-imports": "^7.12.1",
- "@babel/helper-replace-supers": "^7.12.1",
- "@babel/helper-simple-access": "^7.12.1",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/helper-validator-identifier": "^7.10.4",
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.1",
- "@babel/types": "^7.12.1",
- "lodash": "^4.17.19"
- }
- },
- "@babel/helper-optimise-call-expression": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz",
- "integrity": "sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.10.4"
- }
- },
- "@babel/helper-plugin-utils": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
- "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
- "dev": true
- },
- "@babel/helper-regex": {
- "version": "7.10.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.10.5.tgz",
- "integrity": "sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==",
- "dev": true,
- "requires": {
- "lodash": "^4.17.19"
- }
- },
- "@babel/helper-remap-async-to-generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz",
- "integrity": "sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==",
- "dev": true,
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.10.4",
- "@babel/helper-wrap-function": "^7.10.4",
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-replace-supers": {
- "version": "7.12.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
- "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
- "dev": true,
- "requires": {
- "@babel/helper-member-expression-to-functions": "^7.12.1",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/traverse": "^7.12.5",
- "@babel/types": "^7.12.5"
- }
- },
- "@babel/helper-simple-access": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
- "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-skip-transparent-expression-wrappers": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz",
- "integrity": "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.12.1"
- }
- },
- "@babel/helper-split-export-declaration": {
- "version": "7.11.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz",
- "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.11.0"
- }
- },
- "@babel/helper-validator-identifier": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
- "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
- "dev": true
- },
- "@babel/helper-validator-option": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz",
- "integrity": "sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A==",
- "dev": true
- },
- "@babel/helper-wrap-function": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz",
- "integrity": "sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==",
- "dev": true,
- "requires": {
- "@babel/helper-function-name": "^7.10.4",
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.10.4",
- "@babel/types": "^7.10.4"
- }
- },
- "@babel/helpers": {
- "version": "7.12.5",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz",
- "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==",
- "dev": true,
- "requires": {
- "@babel/template": "^7.10.4",
- "@babel/traverse": "^7.12.5",
- "@babel/types": "^7.12.5"
- }
- },
- "@babel/highlight": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
- "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
- "dev": true,
- "requires": {
- "@babel/helper-validator-identifier": "^7.10.4",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- }
- },
- "@babel/parser": {
- "version": "7.12.5",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz",
- "integrity": "sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ==",
- "dev": true
- },
- "@babel/plugin-proposal-async-generator-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz",
- "integrity": "sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-remap-async-to-generator": "^7.12.1",
- "@babel/plugin-syntax-async-generators": "^7.8.0"
- }
- },
- "@babel/plugin-proposal-class-properties": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz",
- "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==",
- "dev": true,
- "requires": {
- "@babel/helper-create-class-features-plugin": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-proposal-dynamic-import": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz",
- "integrity": "sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-dynamic-import": "^7.8.0"
- }
- },
- "@babel/plugin-proposal-export-namespace-from": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz",
- "integrity": "sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-json-strings": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz",
- "integrity": "sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-json-strings": "^7.8.0"
- }
- },
- "@babel/plugin-proposal-logical-assignment-operators": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz",
- "integrity": "sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
- }
- },
- "@babel/plugin-proposal-nullish-coalescing-operator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz",
- "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0"
- }
- },
- "@babel/plugin-proposal-numeric-separator": {
- "version": "7.12.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.5.tgz",
- "integrity": "sha512-UiAnkKuOrCyjZ3sYNHlRlfuZJbBHknMQ9VMwVeX97Ofwx7RpD6gS2HfqTCh8KNUQgcOm8IKt103oR4KIjh7Q8g==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4"
- }
- },
- "@babel/plugin-proposal-object-rest-spread": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz",
- "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
- "@babel/plugin-transform-parameters": "^7.12.1"
- }
- },
- "@babel/plugin-proposal-optional-catch-binding": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz",
- "integrity": "sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.0"
- }
- },
- "@babel/plugin-proposal-optional-chaining": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz",
- "integrity": "sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1",
- "@babel/plugin-syntax-optional-chaining": "^7.8.0"
- }
- },
- "@babel/plugin-proposal-private-methods": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz",
- "integrity": "sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==",
- "dev": true,
- "requires": {
- "@babel/helper-create-class-features-plugin": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-proposal-unicode-property-regex": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz",
- "integrity": "sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==",
- "dev": true,
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-syntax-async-generators": {
- "version": "7.8.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
- "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-bigint": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
- "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-class-properties": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz",
- "integrity": "sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-syntax-dynamic-import": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
- "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-export-namespace-from": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
- "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
- }
- },
- "@babel/plugin-syntax-import-meta": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
- "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-syntax-json-strings": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
- "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-logical-assignment-operators": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
- "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-syntax-nullish-coalescing-operator": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
- "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-numeric-separator": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
- "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-syntax-object-rest-spread": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
- "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-optional-catch-binding": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
- "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-optional-chaining": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
- "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-top-level-await": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz",
- "integrity": "sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-arrow-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz",
- "integrity": "sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-async-to-generator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz",
- "integrity": "sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==",
- "dev": true,
- "requires": {
- "@babel/helper-module-imports": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-remap-async-to-generator": "^7.12.1"
- }
- },
- "@babel/plugin-transform-block-scoped-functions": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz",
- "integrity": "sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-block-scoping": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz",
- "integrity": "sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-classes": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz",
- "integrity": "sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==",
- "dev": true,
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.10.4",
- "@babel/helper-define-map": "^7.10.4",
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-optimise-call-expression": "^7.10.4",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-replace-supers": "^7.12.1",
- "@babel/helper-split-export-declaration": "^7.10.4",
- "globals": "^11.1.0"
- }
- },
- "@babel/plugin-transform-computed-properties": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz",
- "integrity": "sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-destructuring": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz",
- "integrity": "sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-dotall-regex": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz",
- "integrity": "sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==",
- "dev": true,
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-duplicate-keys": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz",
- "integrity": "sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-exponentiation-operator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz",
- "integrity": "sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==",
- "dev": true,
- "requires": {
- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.4",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-for-of": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz",
- "integrity": "sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-function-name": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz",
- "integrity": "sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==",
- "dev": true,
- "requires": {
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-literals": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz",
- "integrity": "sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-member-expression-literals": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz",
- "integrity": "sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-modules-amd": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz",
- "integrity": "sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==",
- "dev": true,
- "requires": {
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- }
- },
- "@babel/plugin-transform-modules-commonjs": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz",
- "integrity": "sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==",
- "dev": true,
- "requires": {
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-simple-access": "^7.12.1",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- }
- },
- "@babel/plugin-transform-modules-systemjs": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz",
- "integrity": "sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==",
- "dev": true,
- "requires": {
- "@babel/helper-hoist-variables": "^7.10.4",
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-validator-identifier": "^7.10.4",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- }
- },
- "@babel/plugin-transform-modules-umd": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz",
- "integrity": "sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==",
- "dev": true,
- "requires": {
- "@babel/helper-module-transforms": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-named-capturing-groups-regex": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz",
- "integrity": "sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==",
- "dev": true,
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.1"
- }
- },
- "@babel/plugin-transform-new-target": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz",
- "integrity": "sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-object-super": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz",
- "integrity": "sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-replace-supers": "^7.12.1"
- }
- },
- "@babel/plugin-transform-parameters": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz",
- "integrity": "sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-property-literals": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz",
- "integrity": "sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-regenerator": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz",
- "integrity": "sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==",
- "dev": true,
- "requires": {
- "regenerator-transform": "^0.14.2"
- }
- },
- "@babel/plugin-transform-reserved-words": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz",
- "integrity": "sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-shorthand-properties": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz",
- "integrity": "sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-spread": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz",
- "integrity": "sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1"
- }
- },
- "@babel/plugin-transform-sticky-regex": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.1.tgz",
- "integrity": "sha512-CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-regex": "^7.10.4"
- }
- },
- "@babel/plugin-transform-template-literals": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz",
- "integrity": "sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-typeof-symbol": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz",
- "integrity": "sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-unicode-escapes": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz",
- "integrity": "sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-transform-unicode-regex": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz",
- "integrity": "sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==",
- "dev": true,
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/preset-env": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz",
- "integrity": "sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==",
- "dev": true,
- "requires": {
- "@babel/compat-data": "^7.12.1",
- "@babel/helper-compilation-targets": "^7.12.1",
- "@babel/helper-module-imports": "^7.12.1",
- "@babel/helper-plugin-utils": "^7.10.4",
- "@babel/helper-validator-option": "^7.12.1",
- "@babel/plugin-proposal-async-generator-functions": "^7.12.1",
- "@babel/plugin-proposal-class-properties": "^7.12.1",
- "@babel/plugin-proposal-dynamic-import": "^7.12.1",
- "@babel/plugin-proposal-export-namespace-from": "^7.12.1",
- "@babel/plugin-proposal-json-strings": "^7.12.1",
- "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
- "@babel/plugin-proposal-numeric-separator": "^7.12.1",
- "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
- "@babel/plugin-proposal-optional-catch-binding": "^7.12.1",
- "@babel/plugin-proposal-optional-chaining": "^7.12.1",
- "@babel/plugin-proposal-private-methods": "^7.12.1",
- "@babel/plugin-proposal-unicode-property-regex": "^7.12.1",
- "@babel/plugin-syntax-async-generators": "^7.8.0",
- "@babel/plugin-syntax-class-properties": "^7.12.1",
- "@babel/plugin-syntax-dynamic-import": "^7.8.0",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
- "@babel/plugin-syntax-json-strings": "^7.8.0",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.0",
- "@babel/plugin-syntax-optional-chaining": "^7.8.0",
- "@babel/plugin-syntax-top-level-await": "^7.12.1",
- "@babel/plugin-transform-arrow-functions": "^7.12.1",
- "@babel/plugin-transform-async-to-generator": "^7.12.1",
- "@babel/plugin-transform-block-scoped-functions": "^7.12.1",
- "@babel/plugin-transform-block-scoping": "^7.12.1",
- "@babel/plugin-transform-classes": "^7.12.1",
- "@babel/plugin-transform-computed-properties": "^7.12.1",
- "@babel/plugin-transform-destructuring": "^7.12.1",
- "@babel/plugin-transform-dotall-regex": "^7.12.1",
- "@babel/plugin-transform-duplicate-keys": "^7.12.1",
- "@babel/plugin-transform-exponentiation-operator": "^7.12.1",
- "@babel/plugin-transform-for-of": "^7.12.1",
- "@babel/plugin-transform-function-name": "^7.12.1",
- "@babel/plugin-transform-literals": "^7.12.1",
- "@babel/plugin-transform-member-expression-literals": "^7.12.1",
- "@babel/plugin-transform-modules-amd": "^7.12.1",
- "@babel/plugin-transform-modules-commonjs": "^7.12.1",
- "@babel/plugin-transform-modules-systemjs": "^7.12.1",
- "@babel/plugin-transform-modules-umd": "^7.12.1",
- "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1",
- "@babel/plugin-transform-new-target": "^7.12.1",
- "@babel/plugin-transform-object-super": "^7.12.1",
- "@babel/plugin-transform-parameters": "^7.12.1",
- "@babel/plugin-transform-property-literals": "^7.12.1",
- "@babel/plugin-transform-regenerator": "^7.12.1",
- "@babel/plugin-transform-reserved-words": "^7.12.1",
- "@babel/plugin-transform-shorthand-properties": "^7.12.1",
- "@babel/plugin-transform-spread": "^7.12.1",
- "@babel/plugin-transform-sticky-regex": "^7.12.1",
- "@babel/plugin-transform-template-literals": "^7.12.1",
- "@babel/plugin-transform-typeof-symbol": "^7.12.1",
- "@babel/plugin-transform-unicode-escapes": "^7.12.1",
- "@babel/plugin-transform-unicode-regex": "^7.12.1",
- "@babel/preset-modules": "^0.1.3",
- "@babel/types": "^7.12.1",
- "core-js-compat": "^3.6.2",
- "semver": "^5.5.0"
- },
- "dependencies": {
- "semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
- "dev": true
- }
- }
- },
- "@babel/preset-modules": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz",
- "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.0.0",
- "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
- "@babel/plugin-transform-dotall-regex": "^7.4.4",
- "@babel/types": "^7.4.4",
- "esutils": "^2.0.2"
- }
- },
- "@babel/runtime": {
- "version": "7.12.5",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
- "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
- "dev": true,
- "requires": {
- "regenerator-runtime": "^0.13.4"
- }
- },
- "@babel/template": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz",
- "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/parser": "^7.10.4",
- "@babel/types": "^7.10.4"
- }
- },
- "@babel/traverse": {
- "version": "7.12.5",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz",
- "integrity": "sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.10.4",
- "@babel/generator": "^7.12.5",
- "@babel/helper-function-name": "^7.10.4",
- "@babel/helper-split-export-declaration": "^7.11.0",
- "@babel/parser": "^7.12.5",
- "@babel/types": "^7.12.5",
- "debug": "^4.1.0",
- "globals": "^11.1.0",
- "lodash": "^4.17.19"
- },
- "dependencies": {
- "debug": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
- "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
- "dev": true,
- "requires": {
- "ms": "2.1.2"
- }
- },
- "ms": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
- "dev": true
- }
- }
- },
- "@babel/types": {
- "version": "7.12.6",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz",
- "integrity": "sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==",
- "dev": true,
- "requires": {
- "@babel/helper-validator-identifier": "^7.10.4",
- "lodash": "^4.17.19",
- "to-fast-properties": "^2.0.0"
- }
- },
- "@bcoe/v8-coverage": {
- "version": "0.2.3",
- "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
- "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
- "dev": true
- },
- "@cnakazawa/watch": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz",
- "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==",
- "dev": true,
- "requires": {
- "exec-sh": "^0.3.2",
- "minimist": "^1.2.0"
- }
- },
- "@eslint/eslintrc": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.1.tgz",
- "integrity": "sha512-XRUeBZ5zBWLYgSANMpThFddrZZkEbGHgUdt5UJjZfnlN9BGCiUBrf+nvbRupSjMvqzwnQN0qwCmOxITt1cfywA==",
- "dev": true,
- "requires": {
- "ajv": "^6.12.4",
- "debug": "^4.1.1",
- "espree": "^7.3.0",
- "globals": "^12.1.0",
- "ignore": "^4.0.6",
- "import-fresh": "^3.2.1",
- "js-yaml": "^3.13.1",
- "lodash": "^4.17.19",
- "minimatch": "^3.0.4",
- "strip-json-comments": "^3.1.1"
- },
- "dependencies": {
- "debug": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
- "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
- "dev": true,
- "requires": {
- "ms": "2.1.2"
- }
- },
- "globals": {
- "version": "12.4.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz",
- "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==",
- "dev": true,
- "requires": {
- "type-fest": "^0.8.1"
- }
- },
- "ms": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
- "dev": true
- }
- }
- },
- "@istanbuljs/load-nyc-config": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
- "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==",
- "dev": true,
- "requires": {
- "camelcase": "^5.3.1",
- "find-up": "^4.1.0",
- "get-package-type": "^0.1.0",
- "js-yaml": "^3.13.1",
- "resolve-from": "^5.0.0"
- },
- "dependencies": {
- "find-up": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
- "dev": true,
- "requires": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- }
- }
- }
- },
- "@istanbuljs/schema": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz",
- "integrity": "sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==",
- "dev": true
- },
- "@jest/console": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz",
- "integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "jest-message-util": "^26.6.2",
- "jest-util": "^26.6.2",
- "slash": "^3.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "@jest/core": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz",
- "integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==",
- "dev": true,
- "requires": {
- "@jest/console": "^26.6.2",
- "@jest/reporters": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.0.0",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.4",
- "jest-changed-files": "^26.6.2",
- "jest-config": "^26.6.3",
- "jest-haste-map": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-resolve-dependencies": "^26.6.3",
- "jest-runner": "^26.6.3",
- "jest-runtime": "^26.6.3",
- "jest-snapshot": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "jest-watcher": "^26.6.2",
- "micromatch": "^4.0.2",
- "p-each-series": "^2.1.0",
- "rimraf": "^3.0.0",
- "slash": "^3.0.0",
- "strip-ansi": "^6.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "@jest/environment": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz",
- "integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==",
- "dev": true,
- "requires": {
- "@jest/fake-timers": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "jest-mock": "^26.6.2"
- }
- },
- "@jest/fake-timers": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz",
- "integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "@sinonjs/fake-timers": "^6.0.1",
- "@types/node": "*",
- "jest-message-util": "^26.6.2",
- "jest-mock": "^26.6.2",
- "jest-util": "^26.6.2"
- }
- },
- "@jest/globals": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz",
- "integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==",
- "dev": true,
- "requires": {
- "@jest/environment": "^26.6.2",
- "@jest/types": "^26.6.2",
- "expect": "^26.6.2"
- }
- },
- "@jest/reporters": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz",
- "integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==",
- "dev": true,
- "requires": {
- "@bcoe/v8-coverage": "^0.2.3",
- "@jest/console": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "collect-v8-coverage": "^1.0.0",
- "exit": "^0.1.2",
- "glob": "^7.1.2",
- "graceful-fs": "^4.2.4",
- "istanbul-lib-coverage": "^3.0.0",
- "istanbul-lib-instrument": "^4.0.3",
- "istanbul-lib-report": "^3.0.0",
- "istanbul-lib-source-maps": "^4.0.0",
- "istanbul-reports": "^3.0.2",
- "jest-haste-map": "^26.6.2",
- "jest-resolve": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-worker": "^26.6.2",
- "node-notifier": "^8.0.0",
- "slash": "^3.0.0",
- "source-map": "^0.6.0",
- "string-length": "^4.0.1",
- "terminal-link": "^2.0.0",
- "v8-to-istanbul": "^7.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- },
- "v8-to-istanbul": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.0.0.tgz",
- "integrity": "sha512-fLL2rFuQpMtm9r8hrAV2apXX/WqHJ6+IC4/eQVdMDGBUgH/YMV4Gv3duk3kjmyg6uiQWBAA9nJwue4iJUOkHeA==",
- "dev": true,
- "requires": {
- "@types/istanbul-lib-coverage": "^2.0.1",
- "convert-source-map": "^1.6.0",
- "source-map": "^0.7.3"
- },
- "dependencies": {
- "source-map": {
- "version": "0.7.3",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
- "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==",
- "dev": true
- }
- }
- }
- }
- },
- "@jest/source-map": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz",
- "integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==",
- "dev": true,
- "requires": {
- "callsites": "^3.0.0",
- "graceful-fs": "^4.2.4",
- "source-map": "^0.6.0"
- },
- "dependencies": {
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- }
- }
- },
- "@jest/test-result": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz",
- "integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==",
- "dev": true,
- "requires": {
- "@jest/console": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/istanbul-lib-coverage": "^2.0.0",
- "collect-v8-coverage": "^1.0.0"
- }
- },
- "@jest/test-sequencer": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz",
- "integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==",
- "dev": true,
- "requires": {
- "@jest/test-result": "^26.6.2",
- "graceful-fs": "^4.2.4",
- "jest-haste-map": "^26.6.2",
- "jest-runner": "^26.6.3",
- "jest-runtime": "^26.6.3"
- }
- },
- "@jest/transform": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz",
- "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==",
- "dev": true,
- "requires": {
- "@babel/core": "^7.1.0",
- "@jest/types": "^26.6.2",
- "babel-plugin-istanbul": "^6.0.0",
- "chalk": "^4.0.0",
- "convert-source-map": "^1.4.0",
- "fast-json-stable-stringify": "^2.0.0",
- "graceful-fs": "^4.2.4",
- "jest-haste-map": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-util": "^26.6.2",
- "micromatch": "^4.0.2",
- "pirates": "^4.0.1",
- "slash": "^3.0.0",
- "source-map": "^0.6.1",
- "write-file-atomic": "^3.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "@jest/types": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
- "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
- "dev": true,
- "requires": {
- "@types/istanbul-lib-coverage": "^2.0.0",
- "@types/istanbul-reports": "^3.0.0",
- "@types/node": "*",
- "@types/yargs": "^15.0.0",
- "chalk": "^4.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "@nicolo-ribaudo/chokidar-2": {
- "version": "2.1.8-no-fsevents",
- "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.tgz",
- "integrity": "sha512-+nb9vWloHNNMFHjGofEam3wopE3m1yuambrrd/fnPc+lFOMB9ROTqQlche9ByFWNkdNqfSgR/kkQtQ8DzEWt2w==",
- "dev": true,
- "optional": true,
- "requires": {
- "anymatch": "^2.0.0",
- "async-each": "^1.0.1",
- "braces": "^2.3.2",
- "glob-parent": "^3.1.0",
- "inherits": "^2.0.3",
- "is-binary-path": "^1.0.0",
- "is-glob": "^4.0.0",
- "normalize-path": "^3.0.0",
- "path-is-absolute": "^1.0.0",
- "readdirp": "^2.2.1",
- "upath": "^1.1.1"
- },
- "dependencies": {
- "anymatch": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
- "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
- "dev": true,
- "optional": true,
- "requires": {
- "micromatch": "^3.1.4",
- "normalize-path": "^2.1.1"
- },
- "dependencies": {
- "normalize-path": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
- "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
- "dev": true,
- "optional": true,
- "requires": {
- "remove-trailing-separator": "^1.0.1"
- }
- }
- }
- },
- "braces": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
- "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
- "dev": true,
- "optional": true,
- "requires": {
- "arr-flatten": "^1.1.0",
- "array-unique": "^0.3.2",
- "extend-shallow": "^2.0.1",
- "fill-range": "^4.0.0",
- "isobject": "^3.0.1",
- "repeat-element": "^1.1.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "optional": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "fill-range": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
- "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
- "dev": true,
- "optional": true,
- "requires": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "optional": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "glob-parent": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
- "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
- "dev": true,
- "optional": true,
- "requires": {
- "is-glob": "^3.1.0",
- "path-dirname": "^1.0.0"
- },
- "dependencies": {
- "is-glob": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
- "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
- "dev": true,
- "optional": true,
- "requires": {
- "is-extglob": "^2.1.0"
- }
- }
- }
- },
- "is-number": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
- "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
- "dev": true,
- "optional": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "optional": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "micromatch": {
- "version": "3.1.10",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
- "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
- "dev": true,
- "optional": true,
- "requires": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- }
- },
- "to-regex-range": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
- "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
- "dev": true,
- "optional": true,
- "requires": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- }
- }
- }
- },
- "@npmcli/move-file": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.0.1.tgz",
- "integrity": "sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw==",
- "dev": true,
- "requires": {
- "mkdirp": "^1.0.4"
- }
- },
- "@rollup/plugin-alias": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/@rollup/plugin-alias/-/plugin-alias-3.1.1.tgz",
- "integrity": "sha512-hNcQY4bpBUIvxekd26DBPgF7BT4mKVNDF5tBG4Zi+3IgwLxGYRY0itHs9D0oLVwXM5pvJDWJlBQro+au8WaUWw==",
- "dev": true,
- "requires": {
- "slash": "^3.0.0"
- }
- },
- "@rollup/plugin-commonjs": {
- "version": "16.0.0",
- "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-16.0.0.tgz",
- "integrity": "sha512-LuNyypCP3msCGVQJ7ki8PqYdpjfEkE/xtFa5DqlF+7IBD0JsfMZ87C58heSwIMint58sAUZbt3ITqOmdQv/dXw==",
- "dev": true,
- "requires": {
- "@rollup/pluginutils": "^3.1.0",
- "commondir": "^1.0.1",
- "estree-walker": "^2.0.1",
- "glob": "^7.1.6",
- "is-reference": "^1.2.1",
- "magic-string": "^0.25.7",
- "resolve": "^1.17.0"
- }
- },
- "@rollup/plugin-inject": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/@rollup/plugin-inject/-/plugin-inject-4.0.2.tgz",
- "integrity": "sha512-TSLMA8waJ7Dmgmoc8JfPnwUwVZgLjjIAM6MqeIFqPO2ODK36JqE0Cf2F54UTgCUuW8da93Mvoj75a6KAVWgylw==",
- "dev": true,
- "requires": {
- "@rollup/pluginutils": "^3.0.4",
- "estree-walker": "^1.0.1",
- "magic-string": "^0.25.5"
- },
- "dependencies": {
- "estree-walker": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz",
- "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==",
- "dev": true
- }
- }
- },
- "@rollup/plugin-json": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-4.1.0.tgz",
- "integrity": "sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==",
- "dev": true,
- "requires": {
- "@rollup/pluginutils": "^3.0.8"
- }
- },
- "@rollup/plugin-node-resolve": {
- "version": "10.0.0",
- "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-10.0.0.tgz",
- "integrity": "sha512-sNijGta8fqzwA1VwUEtTvWCx2E7qC70NMsDh4ZG13byAXYigBNZMxALhKUSycBks5gupJdq0lFrKumFrRZ8H3A==",
- "dev": true,
- "requires": {
- "@rollup/pluginutils": "^3.1.0",
- "@types/resolve": "1.17.1",
- "builtin-modules": "^3.1.0",
- "deepmerge": "^4.2.2",
- "is-module": "^1.0.0",
- "resolve": "^1.17.0"
- }
- },
- "@rollup/plugin-replace": {
- "version": "2.3.4",
- "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.3.4.tgz",
- "integrity": "sha512-waBhMzyAtjCL1GwZes2jaE9MjuQ/DQF2BatH3fRivUF3z0JBFrU0U6iBNC/4WR+2rLKhaAhPWDNPYp4mI6RqdQ==",
- "dev": true,
- "requires": {
- "@rollup/pluginutils": "^3.1.0",
- "magic-string": "^0.25.7"
- }
- },
- "@rollup/pluginutils": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz",
- "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==",
- "dev": true,
- "requires": {
- "@types/estree": "0.0.39",
- "estree-walker": "^1.0.1",
- "picomatch": "^2.2.2"
- },
- "dependencies": {
- "estree-walker": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz",
- "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==",
- "dev": true
- }
- }
- },
- "@sindresorhus/is": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.0.0.tgz",
- "integrity": "sha512-FyD2meJpDPjyNQejSjvnhpgI/azsQkA4lGbuu5BQZfjvJ9cbRZXzeWL2HceCekW4lixO9JPesIIQkSoLjeJHNQ==",
- "dev": true
- },
- "@sinonjs/commons": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.1.tgz",
- "integrity": "sha512-892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw==",
- "dev": true,
- "requires": {
- "type-detect": "4.0.8"
- }
- },
- "@sinonjs/fake-timers": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz",
- "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==",
- "dev": true,
- "requires": {
- "@sinonjs/commons": "^1.7.0"
- }
- },
- "@snowpack/plugin-build-script": {
- "version": "2.0.12",
- "resolved": "https://registry.npmjs.org/@snowpack/plugin-build-script/-/plugin-build-script-2.0.12.tgz",
- "integrity": "sha512-v4Kcmu8x0C5iqPbI8w1vMyT6ZVVeh/Z4LTFeTJx+nLm5VKdQJsLyLarI2YhOuQEGB/RZeR4PxvAJBZn1xcH6Bw==",
- "dev": true,
- "requires": {
- "execa": "^4.0.3",
- "npm-run-path": "^4.0.1"
- }
- },
- "@snowpack/plugin-run-script": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/@snowpack/plugin-run-script/-/plugin-run-script-2.2.1.tgz",
- "integrity": "sha512-TuYOtcTrJJnm7oMtAQCZN8/GEXI6Tumtk3MEKNhka/id9LrHdUvaYZ9+yxj/n4hep9/kJ0Y7SlweL32L5Zy0Ow==",
- "dev": true,
- "requires": {
- "execa": "^4.0.3",
- "npm-run-path": "^4.0.1"
- }
- },
- "@snowpack/plugin-sass": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@snowpack/plugin-sass/-/plugin-sass-1.1.2.tgz",
- "integrity": "sha512-COp9YbbsLA4+8zZ5ruBfP7jcy5P4Ql+8oveA/w78HqLsjk2nNu32iUKVJU7TxganRSYxTk940ds7SxE1qHI2ZA==",
- "dev": true,
- "requires": {
- "execa": "^4.0.3",
- "npm-run-path": "^4.0.1",
- "sass": "^1.3.0"
- }
- },
- "@szmarczak/http-timer": {
- "version": "4.0.5",
- "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.5.tgz",
- "integrity": "sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ==",
- "dev": true,
- "requires": {
- "defer-to-connect": "^2.0.0"
- }
- },
- "@types/babel__core": {
- "version": "7.1.12",
- "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.12.tgz",
- "integrity": "sha512-wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ==",
- "dev": true,
- "requires": {
- "@babel/parser": "^7.1.0",
- "@babel/types": "^7.0.0",
- "@types/babel__generator": "*",
- "@types/babel__template": "*",
- "@types/babel__traverse": "*"
- }
- },
- "@types/babel__generator": {
- "version": "7.6.2",
- "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz",
- "integrity": "sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.0.0"
- }
- },
- "@types/babel__template": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.0.3.tgz",
- "integrity": "sha512-uCoznIPDmnickEi6D0v11SBpW0OuVqHJCa7syXqQHy5uktSCreIlt0iglsCnmvz8yCb38hGcWeseA8cWJSwv5Q==",
- "dev": true,
- "requires": {
- "@babel/parser": "^7.1.0",
- "@babel/types": "^7.0.0"
- }
- },
- "@types/babel__traverse": {
- "version": "7.0.15",
- "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.15.tgz",
- "integrity": "sha512-Pzh9O3sTK8V6I1olsXpCfj2k/ygO2q1X0vhhnDrEQyYLHZesWz+zMZMVcwXLCYf0U36EtmyYaFGPfXlTtDHe3A==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.3.0"
- }
- },
- "@types/cacheable-request": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.1.tgz",
- "integrity": "sha512-ykFq2zmBGOCbpIXtoVbz4SKY5QriWPh3AjyU4G74RYbtt5yOc5OfaY75ftjg7mikMOla1CTGpX3lLbuJh8DTrQ==",
- "dev": true,
- "requires": {
- "@types/http-cache-semantics": "*",
- "@types/keyv": "*",
- "@types/node": "*",
- "@types/responselike": "*"
- }
- },
- "@types/cheerio": {
- "version": "0.22.22",
- "resolved": "https://registry.npmjs.org/@types/cheerio/-/cheerio-0.22.22.tgz",
- "integrity": "sha512-05DYX4zU96IBfZFY+t3Mh88nlwSMtmmzSYaQkKN48T495VV1dkHSah6qYyDTN5ngaS0i0VonH37m+RuzSM0YiA==",
- "dev": true,
- "requires": {
- "@types/node": "*"
- }
- },
- "@types/estree": {
- "version": "0.0.39",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz",
- "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==",
- "dev": true
- },
- "@types/graceful-fs": {
- "version": "4.1.4",
- "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.4.tgz",
- "integrity": "sha512-mWA/4zFQhfvOA8zWkXobwJvBD7vzcxgrOQ0J5CH1votGqdq9m7+FwtGaqyCZqC3NyyBkc9z4m+iry4LlqcMWJg==",
- "dev": true,
- "requires": {
- "@types/node": "*"
- }
- },
- "@types/http-cache-semantics": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.0.tgz",
- "integrity": "sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A==",
- "dev": true
- },
- "@types/istanbul-lib-coverage": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz",
- "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==",
- "dev": true
- },
- "@types/istanbul-lib-report": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
- "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
- "dev": true,
- "requires": {
- "@types/istanbul-lib-coverage": "*"
- }
- },
- "@types/istanbul-reports": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
- "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
- "dev": true,
- "requires": {
- "@types/istanbul-lib-report": "*"
- }
- },
- "@types/json5": {
- "version": "0.0.29",
- "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
- "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=",
- "dev": true
- },
- "@types/keyv": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.1.tgz",
- "integrity": "sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw==",
- "dev": true,
- "requires": {
- "@types/node": "*"
- }
- },
- "@types/node": {
- "version": "14.14.6",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.6.tgz",
- "integrity": "sha512-6QlRuqsQ/Ox/aJEQWBEJG7A9+u7oSYl3mem/K8IzxXG/kAGbV1YPD9Bg9Zw3vyxC/YP+zONKwy8hGkSt1jxFMw==",
- "dev": true
- },
- "@types/normalize-package-data": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz",
- "integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==",
- "dev": true
- },
- "@types/parse-json": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz",
- "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==",
- "dev": true
- },
- "@types/prettier": {
- "version": "2.1.5",
- "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.1.5.tgz",
- "integrity": "sha512-UEyp8LwZ4Dg30kVU2Q3amHHyTn1jEdhCIE59ANed76GaT1Vp76DD3ZWSAxgCrw6wJ0TqeoBpqmfUHiUDPs//HQ==",
- "dev": true
- },
- "@types/resolve": {
- "version": "1.17.1",
- "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz",
- "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==",
- "dev": true,
- "requires": {
- "@types/node": "*"
- }
- },
- "@types/responselike": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz",
- "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==",
- "dev": true,
- "requires": {
- "@types/node": "*"
- }
- },
- "@types/stack-utils": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz",
- "integrity": "sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==",
- "dev": true
- },
- "@types/yargs": {
- "version": "15.0.9",
- "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.9.tgz",
- "integrity": "sha512-HmU8SeIRhZCWcnRskCs36Q1Q00KBV6Cqh/ora8WN1+22dY07AZdn6Gel8QZ3t26XYPImtcL8WV/eqjhVmMEw4g==",
- "dev": true,
- "requires": {
- "@types/yargs-parser": "*"
- }
- },
- "@types/yargs-parser": {
- "version": "15.0.0",
- "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz",
- "integrity": "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==",
- "dev": true
- },
- "abab": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz",
- "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==",
- "dev": true
- },
- "acorn": {
- "version": "7.4.1",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
- "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
- "dev": true
- },
- "acorn-globals": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz",
- "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==",
- "dev": true,
- "requires": {
- "acorn": "^7.1.1",
- "acorn-walk": "^7.1.1"
- }
- },
- "acorn-jsx": {
- "version": "5.3.1",
- "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz",
- "integrity": "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==",
- "dev": true
- },
- "acorn-walk": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz",
- "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==",
- "dev": true
- },
- "address": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz",
- "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==",
- "dev": true
- },
- "aggregate-error": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
- "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
- "dev": true,
- "requires": {
- "clean-stack": "^2.0.0",
- "indent-string": "^4.0.0"
- }
- },
- "ajv": {
- "version": "6.12.6",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
- "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
- "dev": true,
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "fast-json-stable-stringify": "^2.0.0",
- "json-schema-traverse": "^0.4.1",
- "uri-js": "^4.2.2"
- }
- },
- "ansi-colors": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz",
- "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==",
- "dev": true
- },
- "ansi-escapes": {
- "version": "4.3.1",
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz",
- "integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==",
- "dev": true,
- "requires": {
- "type-fest": "^0.11.0"
- },
- "dependencies": {
- "type-fest": {
- "version": "0.11.0",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz",
- "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==",
- "dev": true
- }
- }
- },
- "ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
- "requires": {
- "color-convert": "^1.9.0"
- }
- },
- "anymatch": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
- "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
- "dev": true,
- "requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- }
- },
- "argparse": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
- "dev": true,
- "requires": {
- "sprintf-js": "~1.0.2"
- }
- },
- "arr-diff": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
- "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
- "dev": true
- },
- "arr-flatten": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
- "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==",
- "dev": true
- },
- "arr-union": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
- "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
- "dev": true
- },
- "array-includes": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.1.tgz",
- "integrity": "sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==",
- "dev": true,
- "requires": {
- "define-properties": "^1.1.3",
- "es-abstract": "^1.17.0",
- "is-string": "^1.0.5"
- }
- },
- "array-unique": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
- "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
- "dev": true
- },
- "array.prototype.flat": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz",
- "integrity": "sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ==",
- "dev": true,
- "requires": {
- "define-properties": "^1.1.3",
- "es-abstract": "^1.17.0-next.1"
- }
- },
- "asn1": {
- "version": "0.2.4",
- "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz",
- "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==",
- "dev": true,
- "requires": {
- "safer-buffer": "~2.1.0"
- }
- },
- "assert-plus": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
- "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
- "dev": true
- },
- "assign-symbols": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
- "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=",
- "dev": true
- },
- "astral-regex": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz",
- "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==",
- "dev": true
- },
- "async-each": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz",
- "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==",
- "dev": true,
- "optional": true
- },
- "asynckit": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
- "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
- "dev": true
- },
- "atob": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
- "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
- "dev": true
- },
- "aws-sign2": {
- "version": "0.7.0",
- "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
- "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=",
- "dev": true
- },
- "aws4": {
- "version": "1.11.0",
- "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz",
- "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==",
- "dev": true
- },
- "babel-jest": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz",
- "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==",
- "dev": true,
- "requires": {
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/babel__core": "^7.1.7",
- "babel-plugin-istanbul": "^6.0.0",
- "babel-preset-jest": "^26.6.2",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "slash": "^3.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "babel-plugin-dynamic-import-node": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz",
- "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==",
- "dev": true,
- "requires": {
- "object.assign": "^4.1.0"
- }
- },
- "babel-plugin-istanbul": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz",
- "integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.0.0",
- "@istanbuljs/load-nyc-config": "^1.0.0",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-instrument": "^4.0.0",
- "test-exclude": "^6.0.0"
- }
- },
- "babel-plugin-jest-hoist": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz",
- "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==",
- "dev": true,
- "requires": {
- "@babel/template": "^7.3.3",
- "@babel/types": "^7.3.3",
- "@types/babel__core": "^7.0.0",
- "@types/babel__traverse": "^7.0.6"
- }
- },
- "babel-preset-current-node-syntax": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.0.tgz",
- "integrity": "sha512-mGkvkpocWJes1CmMKtgGUwCeeq0pOhALyymozzDWYomHTbDLwueDYG6p4TK1YOeYHCzBzYPsWkgTto10JubI1Q==",
- "dev": true,
- "requires": {
- "@babel/plugin-syntax-async-generators": "^7.8.4",
- "@babel/plugin-syntax-bigint": "^7.8.3",
- "@babel/plugin-syntax-class-properties": "^7.8.3",
- "@babel/plugin-syntax-import-meta": "^7.8.3",
- "@babel/plugin-syntax-json-strings": "^7.8.3",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
- "@babel/plugin-syntax-numeric-separator": "^7.8.3",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3",
- "@babel/plugin-syntax-top-level-await": "^7.8.3"
- }
- },
- "babel-preset-jest": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz",
- "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==",
- "dev": true,
- "requires": {
- "babel-plugin-jest-hoist": "^26.6.2",
- "babel-preset-current-node-syntax": "^1.0.0"
- }
- },
- "balanced-match": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
- "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=",
- "dev": true
- },
- "base": {
- "version": "0.11.2",
- "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
- "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
- "dev": true,
- "requires": {
- "cache-base": "^1.0.1",
- "class-utils": "^0.3.5",
- "component-emitter": "^1.2.1",
- "define-property": "^1.0.0",
- "isobject": "^3.0.1",
- "mixin-deep": "^1.2.0",
- "pascalcase": "^0.1.1"
- },
- "dependencies": {
- "define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
- "dev": true,
- "requires": {
- "is-descriptor": "^1.0.0"
- }
- },
- "is-accessor-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
- "dev": true,
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-data-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
- "dev": true,
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-descriptor": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
- "dev": true,
- "requires": {
- "is-accessor-descriptor": "^1.0.0",
- "is-data-descriptor": "^1.0.0",
- "kind-of": "^6.0.2"
- }
- }
- }
- },
- "bcrypt-pbkdf": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
- "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
- "dev": true,
- "requires": {
- "tweetnacl": "^0.14.3"
- }
- },
- "big.js": {
- "version": "5.2.2",
- "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
- "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
- "dev": true
- },
- "binary-extensions": {
- "version": "1.13.1",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz",
- "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==",
- "dev": true,
- "optional": true
- },
- "boolbase": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
- "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=",
- "dev": true
- },
- "brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "requires": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
- "dev": true,
- "requires": {
- "fill-range": "^7.0.1"
- }
- },
- "browser-process-hrtime": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
- "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==",
- "dev": true
- },
- "browserslist": {
- "version": "4.14.6",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.6.tgz",
- "integrity": "sha512-zeFYcUo85ENhc/zxHbiIp0LGzzTrE2Pv2JhxvS7kpUb9Q9D38kUX6Bie7pGutJ/5iF5rOxE7CepAuWD56xJ33A==",
- "dev": true,
- "requires": {
- "caniuse-lite": "^1.0.30001154",
- "electron-to-chromium": "^1.3.585",
- "escalade": "^3.1.1",
- "node-releases": "^1.1.65"
- }
- },
- "bser": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz",
- "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
- "dev": true,
- "requires": {
- "node-int64": "^0.4.0"
- }
- },
- "buffer-from": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz",
- "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==",
- "dev": true
- },
- "builtin-modules": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.1.0.tgz",
- "integrity": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==",
- "dev": true
- },
- "builtins": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz",
- "integrity": "sha1-y5T662HIaWRR2zZTThQi+U8K7og=",
- "dev": true
- },
- "cacache": {
- "version": "15.0.5",
- "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.0.5.tgz",
- "integrity": "sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==",
- "dev": true,
- "requires": {
- "@npmcli/move-file": "^1.0.1",
- "chownr": "^2.0.0",
- "fs-minipass": "^2.0.0",
- "glob": "^7.1.4",
- "infer-owner": "^1.0.4",
- "lru-cache": "^6.0.0",
- "minipass": "^3.1.1",
- "minipass-collect": "^1.0.2",
- "minipass-flush": "^1.0.5",
- "minipass-pipeline": "^1.2.2",
- "mkdirp": "^1.0.3",
- "p-map": "^4.0.0",
- "promise-inflight": "^1.0.1",
- "rimraf": "^3.0.2",
- "ssri": "^8.0.0",
- "tar": "^6.0.2",
- "unique-filename": "^1.1.1"
- }
- },
- "cache-base": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
- "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
- "dev": true,
- "requires": {
- "collection-visit": "^1.0.0",
- "component-emitter": "^1.2.1",
- "get-value": "^2.0.6",
- "has-value": "^1.0.0",
- "isobject": "^3.0.1",
- "set-value": "^2.0.0",
- "to-object-path": "^0.3.0",
- "union-value": "^1.0.0",
- "unset-value": "^1.0.0"
- }
- },
- "cacheable-lookup": {
- "version": "5.0.3",
- "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.3.tgz",
- "integrity": "sha512-W+JBqF9SWe18A72XFzN/V/CULFzPm7sBXzzR6ekkE+3tLG72wFZrBiBZhrZuDoYexop4PHJVdFAKb/Nj9+tm9w==",
- "dev": true
- },
- "cacheable-request": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.1.tgz",
- "integrity": "sha512-lt0mJ6YAnsrBErpTMWeu5kl/tg9xMAWjavYTN6VQXM1A/teBITuNcccXsCxF0tDQQJf9DfAaX5O4e0zp0KlfZw==",
- "dev": true,
- "requires": {
- "clone-response": "^1.0.2",
- "get-stream": "^5.1.0",
- "http-cache-semantics": "^4.0.0",
- "keyv": "^4.0.0",
- "lowercase-keys": "^2.0.0",
- "normalize-url": "^4.1.0",
- "responselike": "^2.0.0"
- }
- },
- "cachedir": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz",
- "integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==",
- "dev": true
- },
- "call-bind": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.0.tgz",
- "integrity": "sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==",
- "dev": true,
- "requires": {
- "function-bind": "^1.1.1",
- "get-intrinsic": "^1.0.0"
- }
- },
- "callsites": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
- "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
- "dev": true
- },
- "camelcase": {
- "version": "5.3.1",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
- "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
- "dev": true
- },
- "caniuse-lite": {
- "version": "1.0.30001156",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001156.tgz",
- "integrity": "sha512-z7qztybA2eFZTB6Z3yvaQBIoJpQtsewRD74adw2UbRWwsRq3jIPvgrQGawBMbfafekQaD21FWuXNcywtTDGGCw==",
- "dev": true
- },
- "capture-exit": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz",
- "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==",
- "dev": true,
- "requires": {
- "rsvp": "^4.8.4"
- }
- },
- "caseless": {
- "version": "0.12.0",
- "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
- "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=",
- "dev": true
- },
- "chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dev": true,
- "requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- }
- },
- "char-regex": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
- "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
- "dev": true
- },
- "cheerio": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.3.tgz",
- "integrity": "sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==",
- "dev": true,
- "requires": {
- "css-select": "~1.2.0",
- "dom-serializer": "~0.1.1",
- "entities": "~1.1.1",
- "htmlparser2": "^3.9.1",
- "lodash": "^4.15.0",
- "parse5": "^3.0.1"
- },
- "dependencies": {
- "css-select": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz",
- "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=",
- "dev": true,
- "requires": {
- "boolbase": "~1.0.0",
- "css-what": "2.1",
- "domutils": "1.5.1",
- "nth-check": "~1.0.1"
- }
- },
- "css-what": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz",
- "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==",
- "dev": true
- },
- "dom-serializer": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz",
- "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==",
- "dev": true,
- "requires": {
- "domelementtype": "^1.3.0",
- "entities": "^1.1.1"
- }
- },
- "domhandler": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz",
- "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==",
- "dev": true,
- "requires": {
- "domelementtype": "1"
- }
- },
- "domutils": {
- "version": "1.5.1",
- "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz",
- "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=",
- "dev": true,
- "requires": {
- "dom-serializer": "0",
- "domelementtype": "1"
- }
- },
- "htmlparser2": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz",
- "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==",
- "dev": true,
- "requires": {
- "domelementtype": "^1.3.1",
- "domhandler": "^2.3.0",
- "domutils": "^1.5.1",
- "entities": "^1.1.1",
- "inherits": "^2.0.1",
- "readable-stream": "^3.1.1"
- }
- }
- }
- },
- "chokidar": {
- "version": "3.4.3",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz",
- "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==",
- "dev": true,
- "requires": {
- "anymatch": "~3.1.1",
- "braces": "~3.0.2",
- "fsevents": "~2.1.2",
- "glob-parent": "~5.1.0",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.5.0"
- },
- "dependencies": {
- "binary-extensions": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz",
- "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==",
- "dev": true
- },
- "is-binary-path": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
- "dev": true,
- "requires": {
- "binary-extensions": "^2.0.0"
- }
- },
- "readdirp": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz",
- "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==",
- "dev": true,
- "requires": {
- "picomatch": "^2.2.1"
- }
- }
- }
- },
- "chownr": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
- "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
- "dev": true
- },
- "ci-info": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz",
- "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==",
- "dev": true
- },
- "cjs-module-lexer": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.0.0.tgz",
- "integrity": "sha512-bLSEjEwg4knnuXt7LIWegvgTOClk6ZonZY6g4CFGBly1EjRqVjTjI8Dwnb/dsu1PwJjYBKxnguE5bRTdk+bFOA==",
- "dev": true
- },
- "class-utils": {
- "version": "0.3.6",
- "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
- "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
- "dev": true,
- "requires": {
- "arr-union": "^3.1.0",
- "define-property": "^0.2.5",
- "isobject": "^3.0.0",
- "static-extend": "^0.1.1"
- },
- "dependencies": {
- "define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "dev": true,
- "requires": {
- "is-descriptor": "^0.1.0"
- }
- }
- }
- },
- "clean-stack": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
- "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
- "dev": true
- },
- "clone-response": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
- "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=",
- "dev": true,
- "requires": {
- "mimic-response": "^1.0.0"
- }
- },
- "co": {
- "version": "4.6.0",
- "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
- "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=",
- "dev": true
- },
- "collect-v8-coverage": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz",
- "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==",
- "dev": true
- },
- "collection-visit": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
- "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
- "dev": true,
- "requires": {
- "map-visit": "^1.0.0",
- "object-visit": "^1.0.0"
- }
- },
- "color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "dev": true,
- "requires": {
- "color-name": "1.1.3"
- }
- },
- "color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
- "dev": true
- },
- "colorette": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz",
- "integrity": "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==",
- "dev": true
- },
- "combined-stream": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
- "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
- "dev": true,
- "requires": {
- "delayed-stream": "~1.0.0"
- }
- },
- "commondir": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
- "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=",
- "dev": true
- },
- "component-emitter": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz",
- "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==",
- "dev": true
- },
- "compressible": {
- "version": "2.0.18",
- "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
- "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
- "dev": true,
- "requires": {
- "mime-db": ">= 1.43.0 < 2"
- }
- },
- "concat-map": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
- "dev": true
- },
- "contains-path": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz",
- "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=",
- "dev": true
- },
- "convert-source-map": {
- "version": "1.7.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz",
- "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==",
- "dev": true,
- "requires": {
- "safe-buffer": "~5.1.1"
- }
- },
- "copy-descriptor": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
- "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=",
- "dev": true
- },
- "core-js-compat": {
- "version": "3.7.0",
- "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.7.0.tgz",
- "integrity": "sha512-V8yBI3+ZLDVomoWICO6kq/CD28Y4r1M7CWeO4AGpMdMfseu8bkSubBmUPySMGKRTS+su4XQ07zUkAsiu9FCWTg==",
- "dev": true,
- "requires": {
- "browserslist": "^4.14.6",
- "semver": "7.0.0"
- },
- "dependencies": {
- "semver": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
- "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
- "dev": true
- }
- }
- },
- "core-util-is": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
- "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
- "dev": true
- },
- "cosmiconfig": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz",
- "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==",
- "dev": true,
- "requires": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.2.1",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.10.0"
- }
- },
- "cross-spawn": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
- "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
- "dev": true,
- "requires": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- }
- },
- "cssesc": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
- "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
- "dev": true
- },
- "cssom": {
- "version": "0.4.4",
- "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz",
- "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==",
- "dev": true
- },
- "cssstyle": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz",
- "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==",
- "dev": true,
- "requires": {
- "cssom": "~0.3.6"
- },
- "dependencies": {
- "cssom": {
- "version": "0.3.8",
- "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz",
- "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==",
- "dev": true
- }
- }
- },
- "dashdash": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
- "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
- "dev": true,
- "requires": {
- "assert-plus": "^1.0.0"
- }
- },
- "data-urls": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz",
- "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==",
- "dev": true,
- "requires": {
- "abab": "^2.0.3",
- "whatwg-mimetype": "^2.3.0",
- "whatwg-url": "^8.0.0"
- }
- },
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "dev": true,
- "requires": {
- "ms": "2.0.0"
- }
- },
- "decamelize": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
- "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
- "dev": true
- },
- "decimal.js": {
- "version": "10.2.1",
- "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz",
- "integrity": "sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==",
- "dev": true
- },
- "decode-uri-component": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
- "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=",
- "dev": true
- },
- "decompress-response": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
- "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
- "dev": true,
- "requires": {
- "mimic-response": "^3.1.0"
- },
- "dependencies": {
- "mimic-response": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
- "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
- "dev": true
- }
- }
- },
- "deep-is": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
- "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=",
- "dev": true
- },
- "deepmerge": {
- "version": "4.2.2",
- "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
- "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==",
- "dev": true
- },
- "defer-to-connect": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.0.tgz",
- "integrity": "sha512-bYL2d05vOSf1JEZNx5vSAtPuBMkX8K9EUutg7zlKvTqKXHt7RhWJFbmd7qakVuf13i+IkGmp6FwSsONOf6VYIg==",
- "dev": true
- },
- "define-properties": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
- "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
- "dev": true,
- "requires": {
- "object-keys": "^1.0.12"
- }
- },
- "define-property": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
- "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
- "dev": true,
- "requires": {
- "is-descriptor": "^1.0.2",
- "isobject": "^3.0.1"
- },
- "dependencies": {
- "is-accessor-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
- "dev": true,
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-data-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
- "dev": true,
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-descriptor": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
- "dev": true,
- "requires": {
- "is-accessor-descriptor": "^1.0.0",
- "is-data-descriptor": "^1.0.0",
- "kind-of": "^6.0.2"
- }
- }
- }
- },
- "delayed-stream": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
- "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
- "dev": true
- },
- "detect-newline": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz",
- "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
- "dev": true
- },
- "detect-port": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.3.0.tgz",
- "integrity": "sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==",
- "dev": true,
- "requires": {
- "address": "^1.0.1",
- "debug": "^2.6.0"
- }
- },
- "diff-sequences": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz",
- "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==",
- "dev": true
- },
- "doctrine": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
- "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
- "dev": true,
- "requires": {
- "esutils": "^2.0.2"
- }
- },
- "domelementtype": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz",
- "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==",
- "dev": true
- },
- "domexception": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz",
- "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==",
- "dev": true,
- "requires": {
- "webidl-conversions": "^5.0.0"
- },
- "dependencies": {
- "webidl-conversions": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz",
- "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==",
- "dev": true
- }
- }
- },
- "ecc-jsbn": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
- "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=",
- "dev": true,
- "requires": {
- "jsbn": "~0.1.0",
- "safer-buffer": "^2.1.0"
- }
- },
- "electron-to-chromium": {
- "version": "1.3.589",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.589.tgz",
- "integrity": "sha512-rQItBTFnol20HaaLm26UgSUduX7iGerwW7pEYX17MB1tI6LzFajiLV7iZ7LVcUcsN/7HrZUoCLrBauChy/IqEg==",
- "dev": true
- },
- "emittery": {
- "version": "0.7.2",
- "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz",
- "integrity": "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==",
- "dev": true
- },
- "emoji-regex": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
- "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==",
- "dev": true
- },
- "emojis-list": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
- "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
- "dev": true
- },
- "end-of-stream": {
- "version": "1.4.4",
- "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
- "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
- "dev": true,
- "requires": {
- "once": "^1.4.0"
- }
- },
- "enquirer": {
- "version": "2.3.6",
- "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz",
- "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==",
- "dev": true,
- "requires": {
- "ansi-colors": "^4.1.1"
- }
- },
- "entities": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz",
- "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==",
- "dev": true
- },
- "error-ex": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
- "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
- "dev": true,
- "requires": {
- "is-arrayish": "^0.2.1"
- }
- },
- "es-abstract": {
- "version": "1.17.7",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz",
- "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==",
- "dev": true,
- "requires": {
- "es-to-primitive": "^1.2.1",
- "function-bind": "^1.1.1",
- "has": "^1.0.3",
- "has-symbols": "^1.0.1",
- "is-callable": "^1.2.2",
- "is-regex": "^1.1.1",
- "object-inspect": "^1.8.0",
- "object-keys": "^1.1.1",
- "object.assign": "^4.1.1",
- "string.prototype.trimend": "^1.0.1",
- "string.prototype.trimstart": "^1.0.1"
- },
- "dependencies": {
- "object-inspect": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz",
- "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==",
- "dev": true
- }
- }
- },
- "es-module-lexer": {
- "version": "0.3.26",
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.3.26.tgz",
- "integrity": "sha512-Va0Q/xqtrss45hWzP8CZJwzGSZJjDM5/MJRE3IXXnUCcVLElR9BRaE9F62BopysASyc4nM3uwhSW7FFB9nlWAA==",
- "dev": true
- },
- "es-to-primitive": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
- "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
- "dev": true,
- "requires": {
- "is-callable": "^1.1.4",
- "is-date-object": "^1.0.1",
- "is-symbol": "^1.0.2"
- }
- },
- "esbuild": {
- "version": "0.8.18",
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.8.18.tgz",
- "integrity": "sha512-EPbCSr7Ems1loeoy1faUGnJOwTwSrGcoYVQ4f4T4JMKjxJxrWAg+zqXkZK7GvqxfvokPp3HV6Raqn6rqAuW7+Q==",
- "dev": true
- },
- "escalade": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
- "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
- "dev": true
- },
- "escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
- "dev": true
- },
- "escodegen": {
- "version": "1.14.3",
- "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz",
- "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==",
- "dev": true,
- "requires": {
- "esprima": "^4.0.1",
- "estraverse": "^4.2.0",
- "esutils": "^2.0.2",
- "optionator": "^0.8.1",
- "source-map": "~0.6.1"
- },
- "dependencies": {
- "levn": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
- "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
- "dev": true,
- "requires": {
- "prelude-ls": "~1.1.2",
- "type-check": "~0.3.2"
- }
- },
- "optionator": {
- "version": "0.8.3",
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
- "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
- "dev": true,
- "requires": {
- "deep-is": "~0.1.3",
- "fast-levenshtein": "~2.0.6",
- "levn": "~0.3.0",
- "prelude-ls": "~1.1.2",
- "type-check": "~0.3.2",
- "word-wrap": "~1.2.3"
- }
- },
- "prelude-ls": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
- "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=",
- "dev": true
- },
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
- "optional": true
- },
- "type-check": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
- "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=",
- "dev": true,
- "requires": {
- "prelude-ls": "~1.1.2"
- }
- }
- }
- },
- "esinstall": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/esinstall/-/esinstall-0.4.0.tgz",
- "integrity": "sha512-aOGbM1/AYSPMBspYmmNcqlhmUEpVh0wEXj6+IKP8W+rdyyXPYzYOEtjilH8XDc9P7UFTeB8VIfdtJiLGQkpDVA==",
- "dev": true,
- "requires": {
- "@rollup/plugin-alias": "^3.0.1",
- "@rollup/plugin-commonjs": "^16.0.0",
- "@rollup/plugin-inject": "^4.0.2",
- "@rollup/plugin-json": "^4.0.0",
- "@rollup/plugin-node-resolve": "^10.0.0",
- "@rollup/plugin-replace": "^2.3.3",
- "cjs-module-lexer": "^1.0.0",
- "es-module-lexer": "^0.3.24",
- "is-builtin-module": "^3.0.0",
- "kleur": "^4.1.1",
- "mkdirp": "^1.0.3",
- "rimraf": "^3.0.0",
- "rollup": "^2.34.0",
- "rollup-plugin-node-polyfills": "^0.2.1",
- "validate-npm-package-name": "^3.0.0",
- "vm2": "^3.9.2"
- }
- },
- "eslint": {
- "version": "7.12.1",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.12.1.tgz",
- "integrity": "sha512-HlMTEdr/LicJfN08LB3nM1rRYliDXOmfoO4vj39xN6BLpFzF00hbwBoqHk8UcJ2M/3nlARZWy/mslvGEuZFvsg==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.0.0",
- "@eslint/eslintrc": "^0.2.1",
- "ajv": "^6.10.0",
- "chalk": "^4.0.0",
- "cross-spawn": "^7.0.2",
- "debug": "^4.0.1",
- "doctrine": "^3.0.0",
- "enquirer": "^2.3.5",
- "eslint-scope": "^5.1.1",
- "eslint-utils": "^2.1.0",
- "eslint-visitor-keys": "^2.0.0",
- "espree": "^7.3.0",
- "esquery": "^1.2.0",
- "esutils": "^2.0.2",
- "file-entry-cache": "^5.0.1",
- "functional-red-black-tree": "^1.0.1",
- "glob-parent": "^5.0.0",
- "globals": "^12.1.0",
- "ignore": "^4.0.6",
- "import-fresh": "^3.0.0",
- "imurmurhash": "^0.1.4",
- "is-glob": "^4.0.0",
- "js-yaml": "^3.13.1",
- "json-stable-stringify-without-jsonify": "^1.0.1",
- "levn": "^0.4.1",
- "lodash": "^4.17.19",
- "minimatch": "^3.0.4",
- "natural-compare": "^1.4.0",
- "optionator": "^0.9.1",
- "progress": "^2.0.0",
- "regexpp": "^3.1.0",
- "semver": "^7.2.1",
- "strip-ansi": "^6.0.0",
- "strip-json-comments": "^3.1.0",
- "table": "^5.2.3",
- "text-table": "^0.2.0",
- "v8-compile-cache": "^2.0.3"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "debug": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
- "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
- "dev": true,
- "requires": {
- "ms": "2.1.2"
- }
- },
- "globals": {
- "version": "12.4.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz",
- "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==",
- "dev": true,
- "requires": {
- "type-fest": "^0.8.1"
- }
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "ms": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
- "dev": true
- },
- "semver": {
- "version": "7.3.2",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz",
- "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "eslint-config-prettier": {
- "version": "6.15.0",
- "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.15.0.tgz",
- "integrity": "sha512-a1+kOYLR8wMGustcgAjdydMsQ2A/2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs/U82MjSv+qKREkoq3bJaw==",
- "dev": true,
- "requires": {
- "get-stdin": "^6.0.0"
- }
- },
- "eslint-import-resolver-node": {
- "version": "0.3.4",
- "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz",
- "integrity": "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==",
- "dev": true,
- "requires": {
- "debug": "^2.6.9",
- "resolve": "^1.13.1"
- }
- },
- "eslint-module-utils": {
- "version": "2.6.0",
- "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz",
- "integrity": "sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==",
- "dev": true,
- "requires": {
- "debug": "^2.6.9",
- "pkg-dir": "^2.0.0"
- },
- "dependencies": {
- "find-up": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
- "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
- "dev": true,
- "requires": {
- "locate-path": "^2.0.0"
- }
- },
- "locate-path": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
- "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
- "dev": true,
- "requires": {
- "p-locate": "^2.0.0",
- "path-exists": "^3.0.0"
- }
- },
- "p-limit": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
- "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
- "dev": true,
- "requires": {
- "p-try": "^1.0.0"
- }
- },
- "p-locate": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
- "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
- "dev": true,
- "requires": {
- "p-limit": "^1.1.0"
- }
- },
- "p-try": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
- "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
- "dev": true
- },
- "path-exists": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
- "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
- "dev": true
- },
- "pkg-dir": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz",
- "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=",
- "dev": true,
- "requires": {
- "find-up": "^2.1.0"
- }
- }
- }
- },
- "eslint-plugin-import": {
- "version": "2.22.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz",
- "integrity": "sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==",
- "dev": true,
- "requires": {
- "array-includes": "^3.1.1",
- "array.prototype.flat": "^1.2.3",
- "contains-path": "^0.1.0",
- "debug": "^2.6.9",
- "doctrine": "1.5.0",
- "eslint-import-resolver-node": "^0.3.4",
- "eslint-module-utils": "^2.6.0",
- "has": "^1.0.3",
- "minimatch": "^3.0.4",
- "object.values": "^1.1.1",
- "read-pkg-up": "^2.0.0",
- "resolve": "^1.17.0",
- "tsconfig-paths": "^3.9.0"
- },
- "dependencies": {
- "doctrine": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz",
- "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=",
- "dev": true,
- "requires": {
- "esutils": "^2.0.2",
- "isarray": "^1.0.0"
- }
- },
- "find-up": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
- "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
- "dev": true,
- "requires": {
- "locate-path": "^2.0.0"
- }
- },
- "locate-path": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
- "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
- "dev": true,
- "requires": {
- "p-locate": "^2.0.0",
- "path-exists": "^3.0.0"
- }
- },
- "p-limit": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
- "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
- "dev": true,
- "requires": {
- "p-try": "^1.0.0"
- }
- },
- "p-locate": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
- "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
- "dev": true,
- "requires": {
- "p-limit": "^1.1.0"
- }
- },
- "p-try": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
- "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
- "dev": true
- },
- "path-exists": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
- "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
- "dev": true
- },
- "path-type": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz",
- "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=",
- "dev": true,
- "requires": {
- "pify": "^2.0.0"
- }
- },
- "read-pkg": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz",
- "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=",
- "dev": true,
- "requires": {
- "load-json-file": "^2.0.0",
- "normalize-package-data": "^2.3.2",
- "path-type": "^2.0.0"
- }
- },
- "read-pkg-up": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz",
- "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=",
- "dev": true,
- "requires": {
- "find-up": "^2.0.0",
- "read-pkg": "^2.0.0"
- }
- }
- }
- },
- "eslint-scope": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
- "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
- "dev": true,
- "requires": {
- "esrecurse": "^4.3.0",
- "estraverse": "^4.1.1"
- }
- },
- "eslint-utils": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz",
- "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==",
- "dev": true,
- "requires": {
- "eslint-visitor-keys": "^1.1.0"
- },
- "dependencies": {
- "eslint-visitor-keys": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
- "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
- "dev": true
- }
- }
- },
- "eslint-visitor-keys": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz",
- "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==",
- "dev": true
- },
- "espree": {
- "version": "7.3.0",
- "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.0.tgz",
- "integrity": "sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw==",
- "dev": true,
- "requires": {
- "acorn": "^7.4.0",
- "acorn-jsx": "^5.2.0",
- "eslint-visitor-keys": "^1.3.0"
- },
- "dependencies": {
- "eslint-visitor-keys": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
- "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
- "dev": true
- }
- }
- },
- "esprima": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
- "dev": true
- },
- "esquery": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz",
- "integrity": "sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==",
- "dev": true,
- "requires": {
- "estraverse": "^5.1.0"
- },
- "dependencies": {
- "estraverse": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz",
- "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==",
- "dev": true
- }
- }
- },
- "esrecurse": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
- "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
- "dev": true,
- "requires": {
- "estraverse": "^5.2.0"
- },
- "dependencies": {
- "estraverse": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz",
- "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==",
- "dev": true
- }
- }
- },
- "estraverse": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
- "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
- "dev": true
- },
- "estree-walker": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.1.tgz",
- "integrity": "sha512-tF0hv+Yi2Ot1cwj9eYHtxC0jB9bmjacjQs6ZBTj82H8JwUywFuc+7E83NWfNMwHXZc11mjfFcVXPe9gEP4B8dg==",
- "dev": true
- },
- "esutils": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
- "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
- "dev": true
- },
- "etag": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
- "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=",
- "dev": true
- },
- "eventemitter3": {
- "version": "4.0.7",
- "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
- "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==",
- "dev": true
- },
- "exec-sh": {
- "version": "0.3.4",
- "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz",
- "integrity": "sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==",
- "dev": true
- },
- "execa": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz",
- "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==",
- "dev": true,
- "requires": {
- "cross-spawn": "^7.0.0",
- "get-stream": "^5.0.0",
- "human-signals": "^1.1.1",
- "is-stream": "^2.0.0",
- "merge-stream": "^2.0.0",
- "npm-run-path": "^4.0.0",
- "onetime": "^5.1.0",
- "signal-exit": "^3.0.2",
- "strip-final-newline": "^2.0.0"
- }
- },
- "exit": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
- "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=",
- "dev": true
- },
- "expand-brackets": {
- "version": "2.1.4",
- "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
- "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=",
- "dev": true,
- "requires": {
- "debug": "^2.3.3",
- "define-property": "^0.2.5",
- "extend-shallow": "^2.0.1",
- "posix-character-classes": "^0.1.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
- },
- "dependencies": {
- "define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "dev": true,
- "requires": {
- "is-descriptor": "^0.1.0"
- }
- },
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "expect": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz",
- "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "ansi-styles": "^4.0.0",
- "jest-get-type": "^26.3.0",
- "jest-matcher-utils": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-regex-util": "^26.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "extend": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
- "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
- "dev": true
- },
- "extend-shallow": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
- "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
- "dev": true,
- "requires": {
- "assign-symbols": "^1.0.0",
- "is-extendable": "^1.0.1"
- },
- "dependencies": {
- "is-extendable": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
- "dev": true,
- "requires": {
- "is-plain-object": "^2.0.4"
- }
- }
- }
- },
- "extglob": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
- "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
- "dev": true,
- "requires": {
- "array-unique": "^0.3.2",
- "define-property": "^1.0.0",
- "expand-brackets": "^2.1.4",
- "extend-shallow": "^2.0.1",
- "fragment-cache": "^0.2.1",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
- },
- "dependencies": {
- "define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
- "dev": true,
- "requires": {
- "is-descriptor": "^1.0.0"
- }
- },
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- },
- "is-accessor-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
- "dev": true,
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-data-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
- "dev": true,
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-descriptor": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
- "dev": true,
- "requires": {
- "is-accessor-descriptor": "^1.0.0",
- "is-data-descriptor": "^1.0.0",
- "kind-of": "^6.0.2"
- }
- }
- }
- },
- "extsprintf": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
- "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=",
- "dev": true
- },
- "fast-deep-equal": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
- "dev": true
- },
- "fast-json-stable-stringify": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
- "dev": true
- },
- "fast-levenshtein": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
- "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
- "dev": true
- },
- "fb-watchman": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz",
- "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==",
- "dev": true,
- "requires": {
- "bser": "2.1.1"
- }
- },
- "file-entry-cache": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz",
- "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==",
- "dev": true,
- "requires": {
- "flat-cache": "^2.0.1"
- }
- },
- "fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
- "dev": true,
- "requires": {
- "to-regex-range": "^5.0.1"
- }
- },
- "find-cache-dir": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz",
- "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==",
- "dev": true,
- "requires": {
- "commondir": "^1.0.1",
- "make-dir": "^3.0.2",
- "pkg-dir": "^4.1.0"
- }
- },
- "find-up": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
- "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
- "dev": true,
- "requires": {
- "locate-path": "^6.0.0",
- "path-exists": "^4.0.0"
- },
- "dependencies": {
- "locate-path": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
- "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
- "dev": true,
- "requires": {
- "p-locate": "^5.0.0"
- }
- },
- "p-limit": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
- "dev": true,
- "requires": {
- "yocto-queue": "^0.1.0"
- }
- },
- "p-locate": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
- "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
- "dev": true,
- "requires": {
- "p-limit": "^3.0.2"
- }
- }
- }
- },
- "flat-cache": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz",
- "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==",
- "dev": true,
- "requires": {
- "flatted": "^2.0.0",
- "rimraf": "2.6.3",
- "write": "1.0.3"
- },
- "dependencies": {
- "rimraf": {
- "version": "2.6.3",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
- "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==",
- "dev": true,
- "requires": {
- "glob": "^7.1.3"
- }
- }
- }
- },
- "flatted": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz",
- "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==",
- "dev": true
- },
- "follow-redirects": {
- "version": "1.13.0",
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.0.tgz",
- "integrity": "sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA==",
- "dev": true
- },
- "for-in": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
- "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=",
- "dev": true
- },
- "forever-agent": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
- "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=",
- "dev": true
- },
- "fragment-cache": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
- "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=",
- "dev": true,
- "requires": {
- "map-cache": "^0.2.2"
- }
- },
- "fs-minipass": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
- "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
- "dev": true,
- "requires": {
- "minipass": "^3.0.0"
- }
- },
- "fs-readdir-recursive": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz",
- "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==",
- "dev": true
- },
- "fs.realpath": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
- "dev": true
- },
- "fsevents": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
- "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
- "dev": true,
- "optional": true
- },
- "function-bind": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
- "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
- "dev": true
- },
- "functional-red-black-tree": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
- "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=",
- "dev": true
- },
- "generic-names": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/generic-names/-/generic-names-2.0.1.tgz",
- "integrity": "sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ==",
- "dev": true,
- "requires": {
- "loader-utils": "^1.1.0"
- }
- },
- "gensync": {
- "version": "1.0.0-beta.2",
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
- "dev": true
- },
- "get-caller-file": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
- "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
- "dev": true
- },
- "get-intrinsic": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.1.tgz",
- "integrity": "sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg==",
- "dev": true,
- "requires": {
- "function-bind": "^1.1.1",
- "has": "^1.0.3",
- "has-symbols": "^1.0.1"
- }
- },
- "get-package-type": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz",
- "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==",
- "dev": true
- },
- "get-stdin": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz",
- "integrity": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==",
- "dev": true
- },
- "get-stream": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
- "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
- "dev": true,
- "requires": {
- "pump": "^3.0.0"
- }
- },
- "get-value": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz",
- "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=",
- "dev": true
- },
- "getpass": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
- "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
- "dev": true,
- "requires": {
- "assert-plus": "^1.0.0"
- }
- },
- "glob": {
- "version": "7.1.6",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
- "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
- "dev": true,
- "requires": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.0.4",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- }
- },
- "glob-parent": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
- "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
- "dev": true,
- "requires": {
- "is-glob": "^4.0.1"
- }
- },
- "globals": {
- "version": "11.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
- "dev": true
- },
- "got": {
- "version": "11.8.0",
- "resolved": "https://registry.npmjs.org/got/-/got-11.8.0.tgz",
- "integrity": "sha512-k9noyoIIY9EejuhaBNLyZ31D5328LeqnyPNXJQb2XlJZcKakLqN5m6O/ikhq/0lw56kUYS54fVm+D1x57YC9oQ==",
- "dev": true,
- "requires": {
- "@sindresorhus/is": "^4.0.0",
- "@szmarczak/http-timer": "^4.0.5",
- "@types/cacheable-request": "^6.0.1",
- "@types/responselike": "^1.0.0",
- "cacheable-lookup": "^5.0.3",
- "cacheable-request": "^7.0.1",
- "decompress-response": "^6.0.0",
- "http2-wrapper": "^1.0.0-beta.5.2",
- "lowercase-keys": "^2.0.0",
- "p-cancelable": "^2.0.0",
- "responselike": "^2.0.0"
- }
- },
- "graceful-fs": {
- "version": "4.2.4",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
- "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
- "dev": true
- },
- "growly": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz",
- "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=",
- "dev": true,
- "optional": true
- },
- "har-schema": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
- "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=",
- "dev": true
- },
- "har-validator": {
- "version": "5.1.5",
- "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz",
- "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==",
- "dev": true,
- "requires": {
- "ajv": "^6.12.3",
- "har-schema": "^2.0.0"
- }
- },
- "has": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
- "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
- "dev": true,
- "requires": {
- "function-bind": "^1.1.1"
- }
- },
- "has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
- "dev": true
- },
- "has-symbols": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
- "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
- "dev": true
- },
- "has-value": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz",
- "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=",
- "dev": true,
- "requires": {
- "get-value": "^2.0.6",
- "has-values": "^1.0.0",
- "isobject": "^3.0.0"
- }
- },
- "has-values": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz",
- "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=",
- "dev": true,
- "requires": {
- "is-number": "^3.0.0",
- "kind-of": "^4.0.0"
- },
- "dependencies": {
- "is-number": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
- "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "kind-of": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz",
- "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "hosted-git-info": {
- "version": "2.8.8",
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz",
- "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==",
- "dev": true
- },
- "html-encoding-sniffer": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz",
- "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==",
- "dev": true,
- "requires": {
- "whatwg-encoding": "^1.0.5"
- }
- },
- "html-escaper": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
- "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
- "dev": true
- },
- "http-cache-semantics": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz",
- "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==",
- "dev": true
- },
- "http-proxy": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz",
- "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==",
- "dev": true,
- "requires": {
- "eventemitter3": "^4.0.0",
- "follow-redirects": "^1.0.0",
- "requires-port": "^1.0.0"
- }
- },
- "http-signature": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
- "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
- "dev": true,
- "requires": {
- "assert-plus": "^1.0.0",
- "jsprim": "^1.2.2",
- "sshpk": "^1.7.0"
- }
- },
- "http2-wrapper": {
- "version": "1.0.0-beta.5.2",
- "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.0-beta.5.2.tgz",
- "integrity": "sha512-xYz9goEyBnC8XwXDTuC/MZ6t+MrKVQZOk4s7+PaDkwIsQd8IwqvM+0M6bA/2lvG8GHXcPdf+MejTUeO2LCPCeQ==",
- "dev": true,
- "requires": {
- "quick-lru": "^5.1.1",
- "resolve-alpn": "^1.0.0"
- }
- },
- "httpie": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/httpie/-/httpie-1.1.2.tgz",
- "integrity": "sha512-VQ82oXG95oY1fQw/XecHuvcFBA+lZQ9Vwj1RfLcO8a7HpDd4cc2ukwpJt+TUlFaLUAzZErylxWu6wclJ1rUhUQ==",
- "dev": true
- },
- "human-signals": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz",
- "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==",
- "dev": true
- },
- "iconv-lite": {
- "version": "0.4.24",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "dev": true,
- "requires": {
- "safer-buffer": ">= 2.1.2 < 3"
- }
- },
- "icss-replace-symbols": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz",
- "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=",
- "dev": true
- },
- "icss-utils": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz",
- "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==",
- "dev": true,
- "requires": {
- "postcss": "^7.0.14"
- },
- "dependencies": {
- "postcss": {
- "version": "7.0.35",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz",
- "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==",
- "dev": true,
- "requires": {
- "chalk": "^2.4.2",
- "source-map": "^0.6.1",
- "supports-color": "^6.1.0"
- }
- },
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- },
- "supports-color": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
- "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
- "dev": true,
- "requires": {
- "has-flag": "^3.0.0"
- }
- }
- }
- },
- "ignore": {
- "version": "4.0.6",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
- "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==",
- "dev": true
- },
- "import-fresh": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.2.tgz",
- "integrity": "sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw==",
- "dev": true,
- "requires": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- },
- "dependencies": {
- "resolve-from": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
- "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
- "dev": true
- }
- }
- },
- "import-local": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz",
- "integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==",
- "dev": true,
- "requires": {
- "pkg-dir": "^4.2.0",
- "resolve-cwd": "^3.0.0"
- }
- },
- "imurmurhash": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
- "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
- "dev": true
- },
- "indent-string": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
- "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
- "dev": true
- },
- "indexes-of": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz",
- "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=",
- "dev": true
- },
- "infer-owner": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz",
- "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==",
- "dev": true
- },
- "inflight": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
- "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
- "dev": true,
- "requires": {
- "once": "^1.3.0",
- "wrappy": "1"
- }
- },
- "inherits": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
- "dev": true
- },
- "ip-regex": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz",
- "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=",
- "dev": true
- },
- "is-accessor-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
- "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "is-arrayish": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
- "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
- "dev": true
- },
- "is-binary-path": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz",
- "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=",
- "dev": true,
- "optional": true,
- "requires": {
- "binary-extensions": "^1.0.0"
- }
- },
- "is-buffer": {
- "version": "1.1.6",
- "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
- "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
- "dev": true
- },
- "is-builtin-module": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.0.0.tgz",
- "integrity": "sha512-/93sDihsAD652hrMEbJGbMAVBf1qc96kyThHQ0CAOONHaE3aROLpTjDe4WQ5aoC5ITHFxEq1z8XqSU7km+8amw==",
- "dev": true,
- "requires": {
- "builtin-modules": "^3.0.0"
- }
- },
- "is-callable": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz",
- "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==",
- "dev": true
- },
- "is-ci": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz",
- "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==",
- "dev": true,
- "requires": {
- "ci-info": "^2.0.0"
- }
- },
- "is-core-module": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz",
- "integrity": "sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==",
- "dev": true,
- "requires": {
- "has": "^1.0.3"
- }
- },
- "is-data-descriptor": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
- "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "is-date-object": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz",
- "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==",
- "dev": true
- },
- "is-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
- "dev": true,
- "requires": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
- },
- "dependencies": {
- "kind-of": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
- "dev": true
- }
- }
- },
- "is-docker": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.1.1.tgz",
- "integrity": "sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==",
- "dev": true
- },
- "is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
- "dev": true
- },
- "is-extglob": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
- "dev": true
- },
- "is-fullwidth-code-point": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
- "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
- "dev": true
- },
- "is-generator-fn": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
- "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==",
- "dev": true
- },
- "is-glob": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz",
- "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==",
- "dev": true,
- "requires": {
- "is-extglob": "^2.1.1"
- }
- },
- "is-module": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz",
- "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=",
- "dev": true
- },
- "is-negative-zero": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.0.tgz",
- "integrity": "sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE=",
- "dev": true
- },
- "is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
- "dev": true
- },
- "is-plain-object": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
- "dev": true,
- "requires": {
- "isobject": "^3.0.1"
- }
- },
- "is-potential-custom-element-name": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz",
- "integrity": "sha1-DFLlS8yjkbssSUsh6GJtczbG45c=",
- "dev": true
- },
- "is-reference": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz",
- "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==",
- "dev": true,
- "requires": {
- "@types/estree": "*"
- }
- },
- "is-regex": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
- "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
- "dev": true,
- "requires": {
- "has-symbols": "^1.0.1"
- }
- },
- "is-stream": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz",
- "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==",
- "dev": true
- },
- "is-string": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz",
- "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==",
- "dev": true
- },
- "is-symbol": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
- "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
- "dev": true,
- "requires": {
- "has-symbols": "^1.0.1"
- }
- },
- "is-typedarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
- "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=",
- "dev": true
- },
- "is-windows": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
- "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
- "dev": true
- },
- "is-wsl": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
- "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
- "dev": true,
- "requires": {
- "is-docker": "^2.0.0"
- }
- },
- "isarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
- "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
- "dev": true
- },
- "isbinaryfile": {
- "version": "4.0.6",
- "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.6.tgz",
- "integrity": "sha512-ORrEy+SNVqUhrCaal4hA4fBzhggQQ+BaLntyPOdoEiwlKZW9BZiJXjg3RMiruE4tPEI3pyVPpySHQF/dKWperg==",
- "dev": true
- },
- "isexe": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
- "dev": true
- },
- "isobject": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
- "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=",
- "dev": true
- },
- "isstream": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
- "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=",
- "dev": true
- },
- "istanbul-lib-coverage": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz",
- "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==",
- "dev": true
- },
- "istanbul-lib-instrument": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz",
- "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==",
- "dev": true,
- "requires": {
- "@babel/core": "^7.7.5",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-coverage": "^3.0.0",
- "semver": "^6.3.0"
- }
- },
- "istanbul-lib-report": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
- "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==",
- "dev": true,
- "requires": {
- "istanbul-lib-coverage": "^3.0.0",
- "make-dir": "^3.0.0",
- "supports-color": "^7.1.0"
- },
- "dependencies": {
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "istanbul-lib-source-maps": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz",
- "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==",
- "dev": true,
- "requires": {
- "debug": "^4.1.1",
- "istanbul-lib-coverage": "^3.0.0",
- "source-map": "^0.6.1"
- },
- "dependencies": {
- "debug": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
- "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
- "dev": true,
- "requires": {
- "ms": "2.1.2"
- }
- },
- "ms": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
- "dev": true
- },
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- }
- }
- },
- "istanbul-reports": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz",
- "integrity": "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==",
- "dev": true,
- "requires": {
- "html-escaper": "^2.0.0",
- "istanbul-lib-report": "^3.0.0"
- }
- },
- "jest": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest/-/jest-26.6.3.tgz",
- "integrity": "sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==",
- "dev": true,
- "requires": {
- "@jest/core": "^26.6.3",
- "import-local": "^3.0.2",
- "jest-cli": "^26.6.3"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "cliui": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
- "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
- "dev": true,
- "requires": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.0",
- "wrap-ansi": "^6.2.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "dev": true
- },
- "find-up": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
- "dev": true,
- "requires": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- }
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "is-fullwidth-code-point": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
- "dev": true
- },
- "jest-cli": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz",
- "integrity": "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==",
- "dev": true,
- "requires": {
- "@jest/core": "^26.6.3",
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.4",
- "import-local": "^3.0.2",
- "is-ci": "^2.0.0",
- "jest-config": "^26.6.3",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "prompts": "^2.0.1",
- "yargs": "^15.4.1"
- }
- },
- "string-width": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
- "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
- "dev": true,
- "requires": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.0"
- }
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- },
- "y18n": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz",
- "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==",
- "dev": true
- },
- "yargs": {
- "version": "15.4.1",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
- "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
- "dev": true,
- "requires": {
- "cliui": "^6.0.0",
- "decamelize": "^1.2.0",
- "find-up": "^4.1.0",
- "get-caller-file": "^2.0.1",
- "require-directory": "^2.1.1",
- "require-main-filename": "^2.0.0",
- "set-blocking": "^2.0.0",
- "string-width": "^4.2.0",
- "which-module": "^2.0.0",
- "y18n": "^4.0.0",
- "yargs-parser": "^18.1.2"
- }
- }
- }
- },
- "jest-changed-files": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz",
- "integrity": "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "execa": "^4.0.0",
- "throat": "^5.0.0"
- }
- },
- "jest-config": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz",
- "integrity": "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==",
- "dev": true,
- "requires": {
- "@babel/core": "^7.1.0",
- "@jest/test-sequencer": "^26.6.3",
- "@jest/types": "^26.6.2",
- "babel-jest": "^26.6.3",
- "chalk": "^4.0.0",
- "deepmerge": "^4.2.2",
- "glob": "^7.1.1",
- "graceful-fs": "^4.2.4",
- "jest-environment-jsdom": "^26.6.2",
- "jest-environment-node": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "jest-jasmine2": "^26.6.3",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "micromatch": "^4.0.2",
- "pretty-format": "^26.6.2"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "jest-diff": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz",
- "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==",
- "dev": true,
- "requires": {
- "chalk": "^4.0.0",
- "diff-sequences": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "pretty-format": "^26.6.2"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "jest-docblock": {
- "version": "26.0.0",
- "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz",
- "integrity": "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==",
- "dev": true,
- "requires": {
- "detect-newline": "^3.0.0"
- }
- },
- "jest-each": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz",
- "integrity": "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "jest-get-type": "^26.3.0",
- "jest-util": "^26.6.2",
- "pretty-format": "^26.6.2"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "jest-environment-jsdom": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz",
- "integrity": "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==",
- "dev": true,
- "requires": {
- "@jest/environment": "^26.6.2",
- "@jest/fake-timers": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "jest-mock": "^26.6.2",
- "jest-util": "^26.6.2",
- "jsdom": "^16.4.0"
- }
- },
- "jest-environment-node": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz",
- "integrity": "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==",
- "dev": true,
- "requires": {
- "@jest/environment": "^26.6.2",
- "@jest/fake-timers": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "jest-mock": "^26.6.2",
- "jest-util": "^26.6.2"
- }
- },
- "jest-get-type": {
- "version": "26.3.0",
- "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz",
- "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==",
- "dev": true
- },
- "jest-haste-map": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz",
- "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "@types/graceful-fs": "^4.1.2",
- "@types/node": "*",
- "anymatch": "^3.0.3",
- "fb-watchman": "^2.0.0",
- "fsevents": "^2.1.2",
- "graceful-fs": "^4.2.4",
- "jest-regex-util": "^26.0.0",
- "jest-serializer": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-worker": "^26.6.2",
- "micromatch": "^4.0.2",
- "sane": "^4.0.3",
- "walker": "^1.0.7"
- }
- },
- "jest-jasmine2": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz",
- "integrity": "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==",
- "dev": true,
- "requires": {
- "@babel/traverse": "^7.1.0",
- "@jest/environment": "^26.6.2",
- "@jest/source-map": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "co": "^4.6.0",
- "expect": "^26.6.2",
- "is-generator-fn": "^2.0.0",
- "jest-each": "^26.6.2",
- "jest-matcher-utils": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-runtime": "^26.6.3",
- "jest-snapshot": "^26.6.2",
- "jest-util": "^26.6.2",
- "pretty-format": "^26.6.2",
- "throat": "^5.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "jest-leak-detector": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz",
- "integrity": "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==",
- "dev": true,
- "requires": {
- "jest-get-type": "^26.3.0",
- "pretty-format": "^26.6.2"
- }
- },
- "jest-matcher-utils": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz",
- "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==",
- "dev": true,
- "requires": {
- "chalk": "^4.0.0",
- "jest-diff": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "pretty-format": "^26.6.2"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "jest-message-util": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz",
- "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.0.0",
- "@jest/types": "^26.6.2",
- "@types/stack-utils": "^2.0.0",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "micromatch": "^4.0.2",
- "pretty-format": "^26.6.2",
- "slash": "^3.0.0",
- "stack-utils": "^2.0.2"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "jest-mock": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz",
- "integrity": "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "@types/node": "*"
- }
- },
- "jest-pnp-resolver": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz",
- "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==",
- "dev": true
- },
- "jest-regex-util": {
- "version": "26.0.0",
- "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz",
- "integrity": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==",
- "dev": true
- },
- "jest-resolve": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz",
- "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "jest-pnp-resolver": "^1.2.2",
- "jest-util": "^26.6.2",
- "read-pkg-up": "^7.0.1",
- "resolve": "^1.18.1",
- "slash": "^3.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "jest-resolve-dependencies": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz",
- "integrity": "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-snapshot": "^26.6.2"
- }
- },
- "jest-runner": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz",
- "integrity": "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==",
- "dev": true,
- "requires": {
- "@jest/console": "^26.6.2",
- "@jest/environment": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "emittery": "^0.7.1",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.4",
- "jest-config": "^26.6.3",
- "jest-docblock": "^26.0.0",
- "jest-haste-map": "^26.6.2",
- "jest-leak-detector": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-resolve": "^26.6.2",
- "jest-runtime": "^26.6.3",
- "jest-util": "^26.6.2",
- "jest-worker": "^26.6.2",
- "source-map-support": "^0.5.6",
- "throat": "^5.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "jest-runtime": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz",
- "integrity": "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==",
- "dev": true,
- "requires": {
- "@jest/console": "^26.6.2",
- "@jest/environment": "^26.6.2",
- "@jest/fake-timers": "^26.6.2",
- "@jest/globals": "^26.6.2",
- "@jest/source-map": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/yargs": "^15.0.0",
- "chalk": "^4.0.0",
- "cjs-module-lexer": "^0.6.0",
- "collect-v8-coverage": "^1.0.0",
- "exit": "^0.1.2",
- "glob": "^7.1.3",
- "graceful-fs": "^4.2.4",
- "jest-config": "^26.6.3",
- "jest-haste-map": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-mock": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-snapshot": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "slash": "^3.0.0",
- "strip-bom": "^4.0.0",
- "yargs": "^15.4.1"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "cjs-module-lexer": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz",
- "integrity": "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==",
- "dev": true
- },
- "cliui": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
- "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
- "dev": true,
- "requires": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.0",
- "wrap-ansi": "^6.2.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "dev": true
- },
- "find-up": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
- "dev": true,
- "requires": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- }
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "is-fullwidth-code-point": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
- "dev": true
- },
- "string-width": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
- "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
- "dev": true,
- "requires": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.0"
- }
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- },
- "y18n": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz",
- "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==",
- "dev": true
- },
- "yargs": {
- "version": "15.4.1",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
- "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
- "dev": true,
- "requires": {
- "cliui": "^6.0.0",
- "decamelize": "^1.2.0",
- "find-up": "^4.1.0",
- "get-caller-file": "^2.0.1",
- "require-directory": "^2.1.1",
- "require-main-filename": "^2.0.0",
- "set-blocking": "^2.0.0",
- "string-width": "^4.2.0",
- "which-module": "^2.0.0",
- "y18n": "^4.0.0",
- "yargs-parser": "^18.1.2"
- }
- }
- }
- },
- "jest-serializer": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz",
- "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==",
- "dev": true,
- "requires": {
- "@types/node": "*",
- "graceful-fs": "^4.2.4"
- }
- },
- "jest-snapshot": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz",
- "integrity": "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.0.0",
- "@jest/types": "^26.6.2",
- "@types/babel__traverse": "^7.0.4",
- "@types/prettier": "^2.0.0",
- "chalk": "^4.0.0",
- "expect": "^26.6.2",
- "graceful-fs": "^4.2.4",
- "jest-diff": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "jest-haste-map": "^26.6.2",
- "jest-matcher-utils": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-resolve": "^26.6.2",
- "natural-compare": "^1.4.0",
- "pretty-format": "^26.6.2",
- "semver": "^7.3.2"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "semver": {
- "version": "7.3.2",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz",
- "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "jest-util": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
- "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "is-ci": "^2.0.0",
- "micromatch": "^4.0.2"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "jest-validate": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz",
- "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "camelcase": "^6.0.0",
- "chalk": "^4.0.0",
- "jest-get-type": "^26.3.0",
- "leven": "^3.1.0",
- "pretty-format": "^26.6.2"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "camelcase": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz",
- "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==",
- "dev": true
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "jest-watcher": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz",
- "integrity": "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==",
- "dev": true,
- "requires": {
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.0.0",
- "jest-util": "^26.6.2",
- "string-length": "^4.0.1"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "jest-worker": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
- "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
- "dev": true,
- "requires": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^7.0.0"
- },
- "dependencies": {
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "js-tokens": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
- "dev": true
- },
- "js-yaml": {
- "version": "3.14.0",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz",
- "integrity": "sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==",
- "dev": true,
- "requires": {
- "argparse": "^1.0.7",
- "esprima": "^4.0.0"
- }
- },
- "jsbn": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
- "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=",
- "dev": true
- },
- "jsdom": {
- "version": "16.4.0",
- "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.4.0.tgz",
- "integrity": "sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w==",
- "dev": true,
- "requires": {
- "abab": "^2.0.3",
- "acorn": "^7.1.1",
- "acorn-globals": "^6.0.0",
- "cssom": "^0.4.4",
- "cssstyle": "^2.2.0",
- "data-urls": "^2.0.0",
- "decimal.js": "^10.2.0",
- "domexception": "^2.0.1",
- "escodegen": "^1.14.1",
- "html-encoding-sniffer": "^2.0.1",
- "is-potential-custom-element-name": "^1.0.0",
- "nwsapi": "^2.2.0",
- "parse5": "5.1.1",
- "request": "^2.88.2",
- "request-promise-native": "^1.0.8",
- "saxes": "^5.0.0",
- "symbol-tree": "^3.2.4",
- "tough-cookie": "^3.0.1",
- "w3c-hr-time": "^1.0.2",
- "w3c-xmlserializer": "^2.0.0",
- "webidl-conversions": "^6.1.0",
- "whatwg-encoding": "^1.0.5",
- "whatwg-mimetype": "^2.3.0",
- "whatwg-url": "^8.0.0",
- "ws": "^7.2.3",
- "xml-name-validator": "^3.0.0"
- },
- "dependencies": {
- "parse5": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz",
- "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==",
- "dev": true
- }
- }
- },
- "jsesc": {
- "version": "2.5.2",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
- "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
- "dev": true
- },
- "json-buffer": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
- "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
- "dev": true
- },
- "json-parse-even-better-errors": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
- "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
- "dev": true
- },
- "json-schema": {
- "version": "0.2.3",
- "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
- "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=",
- "dev": true
- },
- "json-schema-traverse": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
- "dev": true
- },
- "json-stable-stringify-without-jsonify": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
- "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=",
- "dev": true
- },
- "json-stringify-safe": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
- "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=",
- "dev": true
- },
- "json5": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
- "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
- "dev": true,
- "requires": {
- "minimist": "^1.2.5"
- }
- },
- "jsonschema": {
- "version": "1.2.11",
- "resolved": "https://registry.npmjs.org/jsonschema/-/jsonschema-1.2.11.tgz",
- "integrity": "sha512-XNZHs3N1IOa3lPKm//npxMhOdaoPw+MvEV0NIgxcER83GTJcG13rehtWmpBCfEt8DrtYwIkMTs8bdXoYs4fvnQ==",
- "dev": true
- },
- "jsprim": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
- "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
- "dev": true,
- "requires": {
- "assert-plus": "1.0.0",
- "extsprintf": "1.3.0",
- "json-schema": "0.2.3",
- "verror": "1.10.0"
- }
- },
- "keyv": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.0.3.tgz",
- "integrity": "sha512-zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA==",
- "dev": true,
- "requires": {
- "json-buffer": "3.0.1"
- }
- },
- "kind-of": {
- "version": "6.0.3",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
- "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
- "dev": true
- },
- "kleur": {
- "version": "4.1.3",
- "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.3.tgz",
- "integrity": "sha512-H1tr8QP2PxFTNwAFM74Mui2b6ovcY9FoxJefgrwxY+OCJcq01k5nvhf4M/KnizzrJvLRap5STUy7dgDV35iUBw==",
- "dev": true
- },
- "leven": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
- "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
- "dev": true
- },
- "levn": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
- "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
- "dev": true,
- "requires": {
- "prelude-ls": "^1.2.1",
- "type-check": "~0.4.0"
- }
- },
- "lines-and-columns": {
- "version": "1.1.6",
- "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz",
- "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=",
- "dev": true
- },
- "load-json-file": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz",
- "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.1.2",
- "parse-json": "^2.2.0",
- "pify": "^2.0.0",
- "strip-bom": "^3.0.0"
- },
- "dependencies": {
- "parse-json": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz",
- "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=",
- "dev": true,
- "requires": {
- "error-ex": "^1.2.0"
- }
- },
- "strip-bom": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
- "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
- "dev": true
- }
- }
- },
- "loader-utils": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
- "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
- "dev": true,
- "requires": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^1.0.1"
- },
- "dependencies": {
- "json5": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
- "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
- "dev": true,
- "requires": {
- "minimist": "^1.2.0"
- }
- }
- }
- },
- "locate-path": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
- "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
- "dev": true,
- "requires": {
- "p-locate": "^4.1.0"
- }
- },
- "lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==",
- "dev": true
- },
- "lodash.camelcase": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz",
- "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=",
- "dev": true
- },
- "lodash.sortby": {
- "version": "4.7.0",
- "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz",
- "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=",
- "dev": true
- },
- "lowercase-keys": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz",
- "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==",
- "dev": true
- },
- "lru-cache": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
- "dev": true,
- "requires": {
- "yallist": "^4.0.0"
- }
- },
- "magic-string": {
- "version": "0.25.7",
- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz",
- "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==",
- "dev": true,
- "requires": {
- "sourcemap-codec": "^1.4.4"
- }
- },
- "make-dir": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
- "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
- "dev": true,
- "requires": {
- "semver": "^6.0.0"
- }
- },
- "makeerror": {
- "version": "1.0.11",
- "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz",
- "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=",
- "dev": true,
- "requires": {
- "tmpl": "1.0.x"
- }
- },
- "map-cache": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
- "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=",
- "dev": true
- },
- "map-visit": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz",
- "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=",
- "dev": true,
- "requires": {
- "object-visit": "^1.0.0"
- }
- },
- "merge-stream": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
- "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
- "dev": true
- },
- "micromatch": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
- "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
- "dev": true,
- "requires": {
- "braces": "^3.0.1",
- "picomatch": "^2.0.5"
- }
- },
- "mime-db": {
- "version": "1.45.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.45.0.tgz",
- "integrity": "sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w==",
- "dev": true
- },
- "mime-types": {
- "version": "2.1.27",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz",
- "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==",
- "dev": true,
- "requires": {
- "mime-db": "1.44.0"
- },
- "dependencies": {
- "mime-db": {
- "version": "1.44.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz",
- "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==",
- "dev": true
- }
- }
- },
- "mimic-fn": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
- "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
- "dev": true
- },
- "mimic-response": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz",
- "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==",
- "dev": true
- },
- "minimatch": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
- "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
- "dev": true,
- "requires": {
- "brace-expansion": "^1.1.7"
- }
- },
- "minimist": {
- "version": "1.2.5",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
- "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
- "dev": true
- },
- "minipass": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz",
- "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==",
- "dev": true,
- "requires": {
- "yallist": "^4.0.0"
- }
- },
- "minipass-collect": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz",
- "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
- "dev": true,
- "requires": {
- "minipass": "^3.0.0"
- }
- },
- "minipass-flush": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz",
- "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
- "dev": true,
- "requires": {
- "minipass": "^3.0.0"
- }
- },
- "minipass-pipeline": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz",
- "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==",
- "dev": true,
- "requires": {
- "minipass": "^3.0.0"
- }
- },
- "minizlib": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
- "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
- "dev": true,
- "requires": {
- "minipass": "^3.0.0",
- "yallist": "^4.0.0"
- }
- },
- "mixin-deep": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz",
- "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==",
- "dev": true,
- "requires": {
- "for-in": "^1.0.2",
- "is-extendable": "^1.0.1"
- },
- "dependencies": {
- "is-extendable": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
- "dev": true,
- "requires": {
- "is-plain-object": "^2.0.4"
- }
- }
- }
- },
- "mkdirp": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
- "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
- "dev": true
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
- "dev": true
- },
- "nanoid": {
- "version": "3.1.20",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.20.tgz",
- "integrity": "sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==",
- "dev": true
- },
- "nanomatch": {
- "version": "1.2.13",
- "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz",
- "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==",
- "dev": true,
- "requires": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "fragment-cache": "^0.2.1",
- "is-windows": "^1.0.2",
- "kind-of": "^6.0.2",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
- }
- },
- "natural-compare": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
- "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
- "dev": true
- },
- "nice-try": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
- "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
- "dev": true
- },
- "node-int64": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz",
- "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=",
- "dev": true
- },
- "node-modules-regexp": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz",
- "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=",
- "dev": true
- },
- "node-notifier": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.0.tgz",
- "integrity": "sha512-46z7DUmcjoYdaWyXouuFNNfUo6eFa94t23c53c+lG/9Cvauk4a98rAUp9672X5dxGdQmLpPzTxzu8f/OeEPaFA==",
- "dev": true,
- "optional": true,
- "requires": {
- "growly": "^1.3.0",
- "is-wsl": "^2.2.0",
- "semver": "^7.3.2",
- "shellwords": "^0.1.1",
- "uuid": "^8.3.0",
- "which": "^2.0.2"
- },
- "dependencies": {
- "semver": {
- "version": "7.3.2",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz",
- "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==",
- "dev": true,
- "optional": true
- }
- }
- },
- "node-releases": {
- "version": "1.1.65",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.65.tgz",
- "integrity": "sha512-YpzJOe2WFIW0V4ZkJQd/DGR/zdVwc/pI4Nl1CZrBO19FdRcSTmsuhdttw9rsTzzJLrNcSloLiBbEYx1C4f6gpA==",
- "dev": true
- },
- "normalize-package-data": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
- "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
- "dev": true,
- "requires": {
- "hosted-git-info": "^2.1.4",
- "resolve": "^1.10.0",
- "semver": "2 || 3 || 4 || 5",
- "validate-npm-package-license": "^3.0.1"
- },
- "dependencies": {
- "semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
- "dev": true
- }
- }
- },
- "normalize-path": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
- "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
- "dev": true
- },
- "normalize-url": {
- "version": "4.5.0",
- "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz",
- "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==",
- "dev": true
- },
- "npm-run-path": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
- "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
- "dev": true,
- "requires": {
- "path-key": "^3.0.0"
- }
- },
- "nth-check": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz",
- "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==",
- "dev": true,
- "requires": {
- "boolbase": "~1.0.0"
- }
- },
- "nwsapi": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz",
- "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==",
- "dev": true
- },
- "oauth-sign": {
- "version": "0.9.0",
- "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
- "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==",
- "dev": true
- },
- "object-copy": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz",
- "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=",
- "dev": true,
- "requires": {
- "copy-descriptor": "^0.1.0",
- "define-property": "^0.2.5",
- "kind-of": "^3.0.3"
- },
- "dependencies": {
- "define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "dev": true,
- "requires": {
- "is-descriptor": "^0.1.0"
- }
- },
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "object-keys": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
- "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
- "dev": true
- },
- "object-visit": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz",
- "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=",
- "dev": true,
- "requires": {
- "isobject": "^3.0.0"
- }
- },
- "object.assign": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
- "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.0",
- "define-properties": "^1.1.3",
- "has-symbols": "^1.0.1",
- "object-keys": "^1.1.1"
- }
- },
- "object.pick": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz",
- "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=",
- "dev": true,
- "requires": {
- "isobject": "^3.0.1"
- }
- },
- "object.values": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.1.tgz",
- "integrity": "sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==",
- "dev": true,
- "requires": {
- "define-properties": "^1.1.3",
- "es-abstract": "^1.17.0-next.1",
- "function-bind": "^1.1.1",
- "has": "^1.0.3"
- }
- },
- "once": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
- "dev": true,
- "requires": {
- "wrappy": "1"
- }
- },
- "onetime": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
- "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
- "dev": true,
- "requires": {
- "mimic-fn": "^2.1.0"
- }
- },
- "open": {
- "version": "7.3.0",
- "resolved": "https://registry.npmjs.org/open/-/open-7.3.0.tgz",
- "integrity": "sha512-mgLwQIx2F/ye9SmbrUkurZCnkoXyXyu9EbHtJZrICjVAJfyMArdHp3KkixGdZx1ZHFPNIwl0DDM1dFFqXbTLZw==",
- "dev": true,
- "requires": {
- "is-docker": "^2.0.0",
- "is-wsl": "^2.1.1"
- }
- },
- "optionator": {
- "version": "0.9.1",
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz",
- "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==",
- "dev": true,
- "requires": {
- "deep-is": "^0.1.3",
- "fast-levenshtein": "^2.0.6",
- "levn": "^0.4.1",
- "prelude-ls": "^1.2.1",
- "type-check": "^0.4.0",
- "word-wrap": "^1.2.3"
- }
- },
- "p-cancelable": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.0.0.tgz",
- "integrity": "sha512-wvPXDmbMmu2ksjkB4Z3nZWTSkJEb9lqVdMaCKpZUGJG9TMiNp9XcbG3fn9fPKjem04fJMJnXoyFPk2FmgiaiNg==",
- "dev": true
- },
- "p-each-series": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.1.0.tgz",
- "integrity": "sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ==",
- "dev": true
- },
- "p-finally": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
- "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
- "dev": true
- },
- "p-limit": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
- "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
- "dev": true,
- "requires": {
- "p-try": "^2.0.0"
- }
- },
- "p-locate": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
- "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
- "dev": true,
- "requires": {
- "p-limit": "^2.2.0"
- }
- },
- "p-map": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
- "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
- "dev": true,
- "requires": {
- "aggregate-error": "^3.0.0"
- }
- },
- "p-queue": {
- "version": "6.6.2",
- "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz",
- "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==",
- "dev": true,
- "requires": {
- "eventemitter3": "^4.0.4",
- "p-timeout": "^3.2.0"
- }
- },
- "p-timeout": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz",
- "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==",
- "dev": true,
- "requires": {
- "p-finally": "^1.0.0"
- }
- },
- "p-try": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
- "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
- "dev": true
- },
- "parent-module": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
- "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
- "dev": true,
- "requires": {
- "callsites": "^3.0.0"
- }
- },
- "parse-json": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.1.0.tgz",
- "integrity": "sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- }
- },
- "parse5": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz",
- "integrity": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==",
- "dev": true,
- "requires": {
- "@types/node": "*"
- }
- },
- "pascalcase": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz",
- "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=",
- "dev": true
- },
- "path-dirname": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz",
- "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=",
- "dev": true,
- "optional": true
- },
- "path-exists": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
- "dev": true
- },
- "path-is-absolute": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
- "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
- "dev": true
- },
- "path-key": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
- "dev": true
- },
- "path-parse": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz",
- "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==",
- "dev": true
- },
- "path-type": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
- "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
- "dev": true
- },
- "performance-now": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
- "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=",
- "dev": true
- },
- "picomatch": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz",
- "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==",
- "dev": true
- },
- "pify": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
- "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
- "dev": true
- },
- "pirates": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz",
- "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==",
- "dev": true,
- "requires": {
- "node-modules-regexp": "^1.0.0"
- }
- },
- "pkg-dir": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
- "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
- "dev": true,
- "requires": {
- "find-up": "^4.0.0"
- },
- "dependencies": {
- "find-up": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
- "dev": true,
- "requires": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- }
- }
- }
- },
- "posix-character-classes": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz",
- "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=",
- "dev": true
- },
- "postcss-modules": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-3.2.2.tgz",
- "integrity": "sha512-JQ8IAqHELxC0N6tyCg2UF40pACY5oiL6UpiqqcIFRWqgDYO8B0jnxzoQ0EOpPrWXvcpu6BSbQU/3vSiq7w8Nhw==",
- "dev": true,
- "requires": {
- "generic-names": "^2.0.1",
- "icss-replace-symbols": "^1.1.0",
- "lodash.camelcase": "^4.3.0",
- "postcss": "^7.0.32",
- "postcss-modules-extract-imports": "^2.0.0",
- "postcss-modules-local-by-default": "^3.0.2",
- "postcss-modules-scope": "^2.2.0",
- "postcss-modules-values": "^3.0.0",
- "string-hash": "^1.1.1"
- },
- "dependencies": {
- "postcss": {
- "version": "7.0.35",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz",
- "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==",
- "dev": true,
- "requires": {
- "chalk": "^2.4.2",
- "source-map": "^0.6.1",
- "supports-color": "^6.1.0"
- }
- },
- "postcss-modules-extract-imports": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz",
- "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==",
- "dev": true,
- "requires": {
- "postcss": "^7.0.5"
- }
- },
- "postcss-modules-local-by-default": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz",
- "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==",
- "dev": true,
- "requires": {
- "icss-utils": "^4.1.1",
- "postcss": "^7.0.32",
- "postcss-selector-parser": "^6.0.2",
- "postcss-value-parser": "^4.1.0"
- }
- },
- "postcss-modules-scope": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz",
- "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==",
- "dev": true,
- "requires": {
- "postcss": "^7.0.6",
- "postcss-selector-parser": "^6.0.0"
- }
- },
- "postcss-modules-values": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz",
- "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==",
- "dev": true,
- "requires": {
- "icss-utils": "^4.0.0",
- "postcss": "^7.0.6"
- }
- },
- "postcss-value-parser": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz",
- "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==",
- "dev": true
- },
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- },
- "supports-color": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
- "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
- "dev": true,
- "requires": {
- "has-flag": "^3.0.0"
- }
- }
- }
- },
- "postcss-selector-parser": {
- "version": "6.0.4",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz",
- "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==",
- "dev": true,
- "requires": {
- "cssesc": "^3.0.0",
- "indexes-of": "^1.0.1",
- "uniq": "^1.0.1",
- "util-deprecate": "^1.0.2"
- }
- },
- "prelude-ls": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
- "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
- "dev": true
- },
- "prettier": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.1.2.tgz",
- "integrity": "sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==",
- "dev": true
- },
- "pretty-format": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz",
- "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "ansi-regex": "^5.0.0",
- "ansi-styles": "^4.0.0",
- "react-is": "^17.0.1"
- },
- "dependencies": {
- "ansi-regex": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
- "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
- "dev": true
- },
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "process-nextick-args": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
- "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
- "dev": true,
- "optional": true
- },
- "progress": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
- "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
- "dev": true
- },
- "promise-inflight": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
- "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=",
- "dev": true
- },
- "prompts": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz",
- "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==",
- "dev": true,
- "requires": {
- "kleur": "^3.0.3",
- "sisteransi": "^1.0.5"
- },
- "dependencies": {
- "kleur": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
- "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
- "dev": true
- }
- }
- },
- "psl": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz",
- "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==",
- "dev": true
- },
- "pump": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
- "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
- "dev": true,
- "requires": {
- "end-of-stream": "^1.1.0",
- "once": "^1.3.1"
- }
- },
- "punycode": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
- "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
- "dev": true
- },
- "quick-lru": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz",
- "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==",
- "dev": true
- },
- "react-is": {
- "version": "17.0.1",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz",
- "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==",
- "dev": true
- },
- "read-pkg": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz",
- "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==",
- "dev": true,
- "requires": {
- "@types/normalize-package-data": "^2.4.0",
- "normalize-package-data": "^2.5.0",
- "parse-json": "^5.0.0",
- "type-fest": "^0.6.0"
- },
- "dependencies": {
- "type-fest": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz",
- "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==",
- "dev": true
- }
- }
- },
- "read-pkg-up": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz",
- "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==",
- "dev": true,
- "requires": {
- "find-up": "^4.1.0",
- "read-pkg": "^5.2.0",
- "type-fest": "^0.8.1"
- },
- "dependencies": {
- "find-up": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
- "dev": true,
- "requires": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- }
- }
- }
- },
- "readable-stream": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
- "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
- "dev": true,
- "requires": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
- }
- },
- "readdirp": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz",
- "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==",
- "dev": true,
- "optional": true,
- "requires": {
- "graceful-fs": "^4.1.11",
- "micromatch": "^3.1.10",
- "readable-stream": "^2.0.2"
- },
- "dependencies": {
- "braces": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
- "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
- "dev": true,
- "optional": true,
- "requires": {
- "arr-flatten": "^1.1.0",
- "array-unique": "^0.3.2",
- "extend-shallow": "^2.0.1",
- "fill-range": "^4.0.0",
- "isobject": "^3.0.1",
- "repeat-element": "^1.1.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "optional": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "fill-range": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
- "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
- "dev": true,
- "optional": true,
- "requires": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "optional": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "is-number": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
- "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
- "dev": true,
- "optional": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "optional": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "micromatch": {
- "version": "3.1.10",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
- "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
- "dev": true,
- "optional": true,
- "requires": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- }
- },
- "readable-stream": {
- "version": "2.3.7",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
- "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
- "dev": true,
- "optional": true,
- "requires": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
- }
- },
- "string_decoder": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
- "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
- "dev": true,
- "optional": true,
- "requires": {
- "safe-buffer": "~5.1.0"
- }
- },
- "to-regex-range": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
- "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
- "dev": true,
- "optional": true,
- "requires": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- }
- }
- }
- },
- "regenerate": {
- "version": "1.4.2",
- "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
- "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==",
- "dev": true
- },
- "regenerate-unicode-properties": {
- "version": "8.2.0",
- "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz",
- "integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==",
- "dev": true,
- "requires": {
- "regenerate": "^1.4.0"
- }
- },
- "regenerator-runtime": {
- "version": "0.13.7",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz",
- "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==",
- "dev": true
- },
- "regenerator-transform": {
- "version": "0.14.5",
- "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz",
- "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==",
- "dev": true,
- "requires": {
- "@babel/runtime": "^7.8.4"
- }
- },
- "regex-not": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
- "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==",
- "dev": true,
- "requires": {
- "extend-shallow": "^3.0.2",
- "safe-regex": "^1.1.0"
- }
- },
- "regexpp": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz",
- "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==",
- "dev": true
- },
- "regexpu-core": {
- "version": "4.7.1",
- "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz",
- "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==",
- "dev": true,
- "requires": {
- "regenerate": "^1.4.0",
- "regenerate-unicode-properties": "^8.2.0",
- "regjsgen": "^0.5.1",
- "regjsparser": "^0.6.4",
- "unicode-match-property-ecmascript": "^1.0.4",
- "unicode-match-property-value-ecmascript": "^1.2.0"
- }
- },
- "regjsgen": {
- "version": "0.5.2",
- "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz",
- "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==",
- "dev": true
- },
- "regjsparser": {
- "version": "0.6.4",
- "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz",
- "integrity": "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==",
- "dev": true,
- "requires": {
- "jsesc": "~0.5.0"
- },
- "dependencies": {
- "jsesc": {
- "version": "0.5.0",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
- "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
- "dev": true
- }
- }
- },
- "remove-trailing-separator": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz",
- "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=",
- "dev": true
- },
- "repeat-element": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz",
- "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==",
- "dev": true
- },
- "repeat-string": {
- "version": "1.6.1",
- "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
- "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=",
- "dev": true
- },
- "request": {
- "version": "2.88.2",
- "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz",
- "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==",
- "dev": true,
- "requires": {
- "aws-sign2": "~0.7.0",
- "aws4": "^1.8.0",
- "caseless": "~0.12.0",
- "combined-stream": "~1.0.6",
- "extend": "~3.0.2",
- "forever-agent": "~0.6.1",
- "form-data": "~2.3.2",
- "har-validator": "~5.1.3",
- "http-signature": "~1.2.0",
- "is-typedarray": "~1.0.0",
- "isstream": "~0.1.2",
- "json-stringify-safe": "~5.0.1",
- "mime-types": "~2.1.19",
- "oauth-sign": "~0.9.0",
- "performance-now": "^2.1.0",
- "qs": "~6.5.2",
- "safe-buffer": "^5.1.2",
- "tough-cookie": "~2.5.0",
- "tunnel-agent": "^0.6.0",
- "uuid": "^3.3.2"
- },
- "dependencies": {
- "form-data": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
- "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
- "dev": true,
- "requires": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.6",
- "mime-types": "^2.1.12"
- }
- },
- "qs": {
- "version": "6.5.2",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
- "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==",
- "dev": true
- },
- "tough-cookie": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
- "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
- "dev": true,
- "requires": {
- "psl": "^1.1.28",
- "punycode": "^2.1.1"
- }
- },
- "uuid": {
- "version": "3.4.0",
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
- "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
- "dev": true
- }
- }
- },
- "request-promise-core": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz",
- "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==",
- "dev": true,
- "requires": {
- "lodash": "^4.17.19"
- }
- },
- "request-promise-native": {
- "version": "1.0.9",
- "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz",
- "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==",
- "dev": true,
- "requires": {
- "request-promise-core": "1.1.4",
- "stealthy-require": "^1.1.1",
- "tough-cookie": "^2.3.3"
- },
- "dependencies": {
- "tough-cookie": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
- "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
- "dev": true,
- "requires": {
- "psl": "^1.1.28",
- "punycode": "^2.1.1"
- }
- }
- }
- },
- "require-directory": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
- "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=",
- "dev": true
- },
- "require-main-filename": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
- "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
- "dev": true
- },
- "requires-port": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
- "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=",
- "dev": true
- },
- "resolve": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.18.1.tgz",
- "integrity": "sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==",
- "dev": true,
- "requires": {
- "is-core-module": "^2.0.0",
- "path-parse": "^1.0.6"
- }
- },
- "resolve-alpn": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.0.0.tgz",
- "integrity": "sha512-rTuiIEqFmGxne4IovivKSDzld2lWW9QCjqv80SYjPgf+gS35eaCAjaP54CCwGAwBtnCsvNLYtqxe1Nw+i6JEmA==",
- "dev": true
- },
- "resolve-cwd": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
- "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
- "dev": true,
- "requires": {
- "resolve-from": "^5.0.0"
- }
- },
- "resolve-from": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
- "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
- "dev": true
- },
- "resolve-url": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz",
- "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=",
- "dev": true
- },
- "responselike": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz",
- "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==",
- "dev": true,
- "requires": {
- "lowercase-keys": "^2.0.0"
- }
- },
- "ret": {
- "version": "0.1.15",
- "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
- "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==",
- "dev": true
- },
- "rimraf": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
- "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
- "dev": true,
- "requires": {
- "glob": "^7.1.3"
- }
- },
- "rollup": {
- "version": "2.34.1",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.34.1.tgz",
- "integrity": "sha512-tGveB6NU5x4MS/iXaIsjfUkEv4hxzJJ4o0FRy5LO62Ndx3R2cmE1qsLYlSfRkvHUUPqWiFoxEm8pRftzh1a5HA==",
- "dev": true,
- "requires": {
- "fsevents": "~2.1.2"
- }
- },
- "rollup-plugin-inject": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/rollup-plugin-inject/-/rollup-plugin-inject-3.0.2.tgz",
- "integrity": "sha512-ptg9PQwzs3orn4jkgXJ74bfs5vYz1NCZlSQMBUA0wKcGp5i5pA1AO3fOUEte8enhGUC+iapTCzEWw2jEFFUO/w==",
- "dev": true,
- "requires": {
- "estree-walker": "^0.6.1",
- "magic-string": "^0.25.3",
- "rollup-pluginutils": "^2.8.1"
- },
- "dependencies": {
- "estree-walker": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz",
- "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==",
- "dev": true
- }
- }
- },
- "rollup-plugin-node-polyfills": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/rollup-plugin-node-polyfills/-/rollup-plugin-node-polyfills-0.2.1.tgz",
- "integrity": "sha512-4kCrKPTJ6sK4/gLL/U5QzVT8cxJcofO0OU74tnB19F40cmuAKSzH5/siithxlofFEjwvw1YAhPmbvGNA6jEroA==",
- "dev": true,
- "requires": {
- "rollup-plugin-inject": "^3.0.0"
- }
- },
- "rollup-pluginutils": {
- "version": "2.8.2",
- "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz",
- "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==",
- "dev": true,
- "requires": {
- "estree-walker": "^0.6.1"
- },
- "dependencies": {
- "estree-walker": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz",
- "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==",
- "dev": true
- }
- }
- },
- "rsvp": {
- "version": "4.8.5",
- "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz",
- "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==",
- "dev": true
- },
- "safe-buffer": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
- "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
- "dev": true
- },
- "safe-regex": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz",
- "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=",
- "dev": true,
- "requires": {
- "ret": "~0.1.10"
- }
- },
- "safer-buffer": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
- "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
- "dev": true
- },
- "sane": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz",
- "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==",
- "dev": true,
- "requires": {
- "@cnakazawa/watch": "^1.0.3",
- "anymatch": "^2.0.0",
- "capture-exit": "^2.0.0",
- "exec-sh": "^0.3.2",
- "execa": "^1.0.0",
- "fb-watchman": "^2.0.0",
- "micromatch": "^3.1.4",
- "minimist": "^1.1.1",
- "walker": "~1.0.5"
- },
- "dependencies": {
- "anymatch": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
- "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
- "dev": true,
- "requires": {
- "micromatch": "^3.1.4",
- "normalize-path": "^2.1.1"
- }
- },
- "braces": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
- "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
- "dev": true,
- "requires": {
- "arr-flatten": "^1.1.0",
- "array-unique": "^0.3.2",
- "extend-shallow": "^2.0.1",
- "fill-range": "^4.0.0",
- "isobject": "^3.0.1",
- "repeat-element": "^1.1.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "cross-spawn": {
- "version": "6.0.5",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
- "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
- "dev": true,
- "requires": {
- "nice-try": "^1.0.4",
- "path-key": "^2.0.1",
- "semver": "^5.5.0",
- "shebang-command": "^1.2.0",
- "which": "^1.2.9"
- }
- },
- "execa": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
- "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
- "dev": true,
- "requires": {
- "cross-spawn": "^6.0.0",
- "get-stream": "^4.0.0",
- "is-stream": "^1.1.0",
- "npm-run-path": "^2.0.0",
- "p-finally": "^1.0.0",
- "signal-exit": "^3.0.0",
- "strip-eof": "^1.0.0"
- }
- },
- "fill-range": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
- "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
- "dev": true,
- "requires": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "get-stream": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
- "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
- "dev": true,
- "requires": {
- "pump": "^3.0.0"
- }
- },
- "is-number": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
- "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "is-stream": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
- "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=",
- "dev": true
- },
- "micromatch": {
- "version": "3.1.10",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
- "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
- "dev": true,
- "requires": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- }
- },
- "normalize-path": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
- "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
- "dev": true,
- "requires": {
- "remove-trailing-separator": "^1.0.1"
- }
- },
- "npm-run-path": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
- "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
- "dev": true,
- "requires": {
- "path-key": "^2.0.0"
- }
- },
- "path-key": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
- "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
- "dev": true
- },
- "semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
- "dev": true
- },
- "shebang-command": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
- "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
- "dev": true,
- "requires": {
- "shebang-regex": "^1.0.0"
- }
- },
- "shebang-regex": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
- "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
- "dev": true
- },
- "to-regex-range": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
- "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
- "dev": true,
- "requires": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- }
- },
- "which": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
- "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
- "dev": true,
- "requires": {
- "isexe": "^2.0.0"
- }
- }
- }
- },
- "sass": {
- "version": "1.29.0",
- "resolved": "https://registry.npmjs.org/sass/-/sass-1.29.0.tgz",
- "integrity": "sha512-ZpwAUFgnvAUCdkjwPREny+17BpUj8nh5Yr6zKPGtLNTLrmtoRYIjm7njP24COhjJldjwW1dcv52Lpf4tNZVVRA==",
- "dev": true,
- "requires": {
- "chokidar": ">=2.0.0 <4.0.0"
- }
- },
- "saxes": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz",
- "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
- "dev": true,
- "requires": {
- "xmlchars": "^2.2.0"
- }
- },
- "semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
- "dev": true
- },
- "set-blocking": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
- "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=",
- "dev": true
- },
- "set-value": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz",
- "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==",
- "dev": true,
- "requires": {
- "extend-shallow": "^2.0.1",
- "is-extendable": "^0.1.1",
- "is-plain-object": "^2.0.3",
- "split-string": "^3.0.1"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "shebang-command": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
- "dev": true,
- "requires": {
- "shebang-regex": "^3.0.0"
- }
- },
- "shebang-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
- "dev": true
- },
- "shellwords": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz",
- "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==",
- "dev": true,
- "optional": true
- },
- "signal-exit": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz",
- "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==",
- "dev": true
- },
- "sisteransi": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
- "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
- "dev": true
- },
- "skypack": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/skypack/-/skypack-0.1.0.tgz",
- "integrity": "sha512-VDMc0YLMh1RwLLuvlz0HcwwbN1vUILFD773y/52buwVsKxbsIIJ+bGKJ/01naKXRsr8HYUPV0KAJn47S6OYGLQ==",
- "dev": true,
- "requires": {
- "cacache": "^15.0.0",
- "cachedir": "^2.3.0",
- "got": "^11.1.4",
- "kleur": "^4.1.0",
- "p-queue": "^6.2.1",
- "rimraf": "^3.0.0",
- "rollup": "^2.23.0",
- "validate-npm-package-name": "^3.0.0"
- }
- },
- "slash": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
- "dev": true
- },
- "slice-ansi": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz",
- "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==",
- "dev": true,
- "requires": {
- "ansi-styles": "^3.2.0",
- "astral-regex": "^1.0.0",
- "is-fullwidth-code-point": "^2.0.0"
- }
- },
- "snapdragon": {
- "version": "0.8.2",
- "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz",
- "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==",
- "dev": true,
- "requires": {
- "base": "^0.11.1",
- "debug": "^2.2.0",
- "define-property": "^0.2.5",
- "extend-shallow": "^2.0.1",
- "map-cache": "^0.2.2",
- "source-map": "^0.5.6",
- "source-map-resolve": "^0.5.0",
- "use": "^3.1.0"
- },
- "dependencies": {
- "define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "dev": true,
- "requires": {
- "is-descriptor": "^0.1.0"
- }
- },
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- },
- "source-map": {
- "version": "0.5.7",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
- "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
- "dev": true
- }
- }
- },
- "snapdragon-node": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz",
- "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==",
- "dev": true,
- "requires": {
- "define-property": "^1.0.0",
- "isobject": "^3.0.0",
- "snapdragon-util": "^3.0.1"
- },
- "dependencies": {
- "define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
- "dev": true,
- "requires": {
- "is-descriptor": "^1.0.0"
- }
- },
- "is-accessor-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
- "dev": true,
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-data-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
- "dev": true,
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-descriptor": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
- "dev": true,
- "requires": {
- "is-accessor-descriptor": "^1.0.0",
- "is-data-descriptor": "^1.0.0",
- "kind-of": "^6.0.2"
- }
- }
- }
- },
- "snapdragon-util": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
- "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==",
- "dev": true,
- "requires": {
- "kind-of": "^3.2.0"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "snowpack": {
- "version": "2.18.0",
- "resolved": "https://registry.npmjs.org/snowpack/-/snowpack-2.18.0.tgz",
- "integrity": "sha512-2uQEcdDZWAjyLUpOfvDI5Br54LoG51Dr3wY7ld/GSBJj+lRqb54dS9S9egBEyT0dAhyyG6/pjLbNX7KEumU+EA==",
- "dev": true,
- "requires": {
- "@snowpack/plugin-build-script": "^2.0.12",
- "@snowpack/plugin-run-script": "^2.2.1",
- "@types/cheerio": "^0.22.22",
- "cacache": "^15.0.0",
- "cachedir": "^2.3.0",
- "cheerio": "^1.0.0-rc.3",
- "chokidar": "^3.4.0",
- "compressible": "^2.0.18",
- "cosmiconfig": "^7.0.0",
- "deepmerge": "^4.2.2",
- "detect-port": "^1.3.0",
- "es-module-lexer": "^0.3.24",
- "esbuild": "^0.8.7",
- "esinstall": "^0.4.0",
- "etag": "^1.8.1",
- "execa": "^4.0.3",
- "find-cache-dir": "^3.3.1",
- "find-up": "^5.0.0",
- "glob": "^7.1.4",
- "http-proxy": "^1.18.1",
- "httpie": "^1.1.2",
- "is-plain-object": "^5.0.0",
- "isbinaryfile": "^4.0.6",
- "jsonschema": "~1.2.5",
- "kleur": "^4.1.1",
- "mime-types": "^2.1.26",
- "mkdirp": "^1.0.3",
- "npm-run-path": "^4.0.1",
- "open": "^7.0.4",
- "p-queue": "^6.6.1",
- "postcss": "^8.1.8",
- "postcss-modules": "^3.2.2",
- "resolve-from": "^5.0.0",
- "rimraf": "^3.0.0",
- "signal-exit": "^3.0.3",
- "skypack": "^0.1.0",
- "source-map": "^0.7.3",
- "strip-ansi": "^6.0.0",
- "strip-comments": "^2.0.1",
- "validate-npm-package-name": "^3.0.0",
- "ws": "^7.3.0",
- "yargs-parser": "^20.0.0"
- },
- "dependencies": {
- "is-plain-object": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
- "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==",
- "dev": true
- },
- "postcss": {
- "version": "8.1.14",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.1.14.tgz",
- "integrity": "sha512-KatkyVPBKfENS+c3dpXJoDXnDD5UZs5exAnDksLqaRJPKwYphEPZt4N0m0i049v2/BtWVQibAhxW4ilXXcolpA==",
- "dev": true,
- "requires": {
- "colorette": "^1.2.1",
- "nanoid": "^3.1.20",
- "source-map": "^0.6.1"
- },
- "dependencies": {
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- }
- }
- },
- "source-map": {
- "version": "0.7.3",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
- "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==",
- "dev": true
- },
- "yargs-parser": {
- "version": "20.2.4",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz",
- "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==",
- "dev": true
- }
- }
- },
- "source-map": {
- "version": "0.5.7",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
- "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
- "dev": true
- },
- "source-map-resolve": {
- "version": "0.5.3",
- "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz",
- "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==",
- "dev": true,
- "requires": {
- "atob": "^2.1.2",
- "decode-uri-component": "^0.2.0",
- "resolve-url": "^0.2.1",
- "source-map-url": "^0.4.0",
- "urix": "^0.1.0"
- }
- },
- "source-map-support": {
- "version": "0.5.19",
- "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz",
- "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==",
- "dev": true,
- "requires": {
- "buffer-from": "^1.0.0",
- "source-map": "^0.6.0"
- },
- "dependencies": {
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- }
- }
- },
- "source-map-url": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz",
- "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=",
- "dev": true
- },
- "sourcemap-codec": {
- "version": "1.4.8",
- "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz",
- "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==",
- "dev": true
- },
- "spdx-correct": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz",
- "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==",
- "dev": true,
- "requires": {
- "spdx-expression-parse": "^3.0.0",
- "spdx-license-ids": "^3.0.0"
- }
- },
- "spdx-exceptions": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
- "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==",
- "dev": true
- },
- "spdx-expression-parse": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
- "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
- "dev": true,
- "requires": {
- "spdx-exceptions": "^2.1.0",
- "spdx-license-ids": "^3.0.0"
- }
- },
- "spdx-license-ids": {
- "version": "3.0.6",
- "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz",
- "integrity": "sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw==",
- "dev": true
- },
- "split-string": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz",
- "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==",
- "dev": true,
- "requires": {
- "extend-shallow": "^3.0.0"
- }
- },
- "sprintf-js": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
- "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
- "dev": true
- },
- "sshpk": {
- "version": "1.16.1",
- "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz",
- "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==",
- "dev": true,
- "requires": {
- "asn1": "~0.2.3",
- "assert-plus": "^1.0.0",
- "bcrypt-pbkdf": "^1.0.0",
- "dashdash": "^1.12.0",
- "ecc-jsbn": "~0.1.1",
- "getpass": "^0.1.1",
- "jsbn": "~0.1.0",
- "safer-buffer": "^2.0.2",
- "tweetnacl": "~0.14.0"
- }
- },
- "ssri": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.0.tgz",
- "integrity": "sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA==",
- "dev": true,
- "requires": {
- "minipass": "^3.1.1"
- }
- },
- "stack-utils": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.2.tgz",
- "integrity": "sha512-0H7QK2ECz3fyZMzQ8rH0j2ykpfbnd20BFtfg/SqVC2+sCTtcw0aDTGB7dk+de4U4uUeuz6nOtJcrkFFLG1B0Rg==",
- "dev": true,
- "requires": {
- "escape-string-regexp": "^2.0.0"
- },
- "dependencies": {
- "escape-string-regexp": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
- "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
- "dev": true
- }
- }
- },
- "static-extend": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz",
- "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=",
- "dev": true,
- "requires": {
- "define-property": "^0.2.5",
- "object-copy": "^0.1.0"
- },
- "dependencies": {
- "define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "dev": true,
- "requires": {
- "is-descriptor": "^0.1.0"
- }
- }
- }
- },
- "stealthy-require": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz",
- "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=",
- "dev": true
- },
- "string-hash": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz",
- "integrity": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=",
- "dev": true
- },
- "string-length": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.1.tgz",
- "integrity": "sha512-PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw==",
- "dev": true,
- "requires": {
- "char-regex": "^1.0.2",
- "strip-ansi": "^6.0.0"
- }
- },
- "string-width": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
- "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
- "dev": true,
- "requires": {
- "emoji-regex": "^7.0.1",
- "is-fullwidth-code-point": "^2.0.0",
- "strip-ansi": "^5.1.0"
- },
- "dependencies": {
- "ansi-regex": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
- "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
- "dev": true
- },
- "strip-ansi": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
- "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
- "dev": true,
- "requires": {
- "ansi-regex": "^4.1.0"
- }
- }
- }
- },
- "string.prototype.trimend": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.2.tgz",
- "integrity": "sha512-8oAG/hi14Z4nOVP0z6mdiVZ/wqjDtWSLygMigTzAb+7aPEDTleeFf+WrF+alzecxIRkckkJVn+dTlwzJXORATw==",
- "dev": true,
- "requires": {
- "define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.1"
- },
- "dependencies": {
- "es-abstract": {
- "version": "1.18.0-next.1",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz",
- "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==",
- "dev": true,
- "requires": {
- "es-to-primitive": "^1.2.1",
- "function-bind": "^1.1.1",
- "has": "^1.0.3",
- "has-symbols": "^1.0.1",
- "is-callable": "^1.2.2",
- "is-negative-zero": "^2.0.0",
- "is-regex": "^1.1.1",
- "object-inspect": "^1.8.0",
- "object-keys": "^1.1.1",
- "object.assign": "^4.1.1",
- "string.prototype.trimend": "^1.0.1",
- "string.prototype.trimstart": "^1.0.1"
- }
- },
- "object-inspect": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz",
- "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==",
- "dev": true
- }
- }
- },
- "string.prototype.trimstart": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.2.tgz",
- "integrity": "sha512-7F6CdBTl5zyu30BJFdzSTlSlLPwODC23Od+iLoVH8X6+3fvDPPuBVVj9iaB1GOsSTSIgVfsfm27R2FGrAPznWg==",
- "dev": true,
- "requires": {
- "define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.1"
- },
- "dependencies": {
- "es-abstract": {
- "version": "1.18.0-next.1",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz",
- "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==",
- "dev": true,
- "requires": {
- "es-to-primitive": "^1.2.1",
- "function-bind": "^1.1.1",
- "has": "^1.0.3",
- "has-symbols": "^1.0.1",
- "is-callable": "^1.2.2",
- "is-negative-zero": "^2.0.0",
- "is-regex": "^1.1.1",
- "object-inspect": "^1.8.0",
- "object-keys": "^1.1.1",
- "object.assign": "^4.1.1",
- "string.prototype.trimend": "^1.0.1",
- "string.prototype.trimstart": "^1.0.1"
- }
- },
- "object-inspect": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz",
- "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==",
- "dev": true
- }
- }
- },
- "string_decoder": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
- "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
- "dev": true,
- "requires": {
- "safe-buffer": "~5.2.0"
- },
- "dependencies": {
- "safe-buffer": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
- "dev": true
- }
- }
- },
- "strip-ansi": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
- "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
- "dev": true,
- "requires": {
- "ansi-regex": "^5.0.0"
- },
- "dependencies": {
- "ansi-regex": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
- "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
- "dev": true
- }
- }
- },
- "strip-bom": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
- "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
- "dev": true
- },
- "strip-comments": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz",
- "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==",
- "dev": true
- },
- "strip-eof": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
- "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=",
- "dev": true
- },
- "strip-final-newline": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
- "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
- "dev": true
- },
- "strip-json-comments": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
- "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
- "dev": true
- },
- "supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dev": true,
- "requires": {
- "has-flag": "^3.0.0"
- }
- },
- "supports-hyperlinks": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz",
- "integrity": "sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0",
- "supports-color": "^7.0.0"
- },
- "dependencies": {
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "symbol-tree": {
- "version": "3.2.4",
- "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
- "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
- "dev": true
- },
- "table": {
- "version": "5.4.6",
- "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
- "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==",
- "dev": true,
- "requires": {
- "ajv": "^6.10.2",
- "lodash": "^4.17.14",
- "slice-ansi": "^2.1.0",
- "string-width": "^3.0.0"
- }
- },
- "tar": {
- "version": "6.0.5",
- "resolved": "https://registry.npmjs.org/tar/-/tar-6.0.5.tgz",
- "integrity": "sha512-0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg==",
- "dev": true,
- "requires": {
- "chownr": "^2.0.0",
- "fs-minipass": "^2.0.0",
- "minipass": "^3.0.0",
- "minizlib": "^2.1.1",
- "mkdirp": "^1.0.3",
- "yallist": "^4.0.0"
- }
- },
- "terminal-link": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz",
- "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==",
- "dev": true,
- "requires": {
- "ansi-escapes": "^4.2.1",
- "supports-hyperlinks": "^2.0.0"
- }
- },
- "test-exclude": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz",
- "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==",
- "dev": true,
- "requires": {
- "@istanbuljs/schema": "^0.1.2",
- "glob": "^7.1.4",
- "minimatch": "^3.0.4"
- }
- },
- "text-table": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
- "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=",
- "dev": true
- },
- "throat": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz",
- "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==",
- "dev": true
- },
- "tmpl": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz",
- "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=",
- "dev": true
- },
- "to-fast-properties": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
- "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=",
- "dev": true
- },
- "to-object-path": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz",
- "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "to-regex": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz",
- "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==",
- "dev": true,
- "requires": {
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "regex-not": "^1.0.2",
- "safe-regex": "^1.1.0"
- }
- },
- "to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "dev": true,
- "requires": {
- "is-number": "^7.0.0"
- }
- },
- "tough-cookie": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz",
- "integrity": "sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==",
- "dev": true,
- "requires": {
- "ip-regex": "^2.1.0",
- "psl": "^1.1.28",
- "punycode": "^2.1.1"
- }
- },
- "tr46": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz",
- "integrity": "sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==",
- "dev": true,
- "requires": {
- "punycode": "^2.1.1"
- }
- },
- "tsconfig-paths": {
- "version": "3.9.0",
- "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz",
- "integrity": "sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==",
- "dev": true,
- "requires": {
- "@types/json5": "^0.0.29",
- "json5": "^1.0.1",
- "minimist": "^1.2.0",
- "strip-bom": "^3.0.0"
- },
- "dependencies": {
- "json5": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
- "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
- "dev": true,
- "requires": {
- "minimist": "^1.2.0"
- }
- },
- "strip-bom": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
- "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
- "dev": true
- }
- }
- },
- "tunnel-agent": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
- "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
- "dev": true,
- "requires": {
- "safe-buffer": "^5.0.1"
- }
- },
- "tweetnacl": {
- "version": "0.14.5",
- "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
- "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=",
- "dev": true
- },
- "type-check": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
- "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
- "dev": true,
- "requires": {
- "prelude-ls": "^1.2.1"
- }
- },
- "type-detect": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
- "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
- "dev": true
- },
- "type-fest": {
- "version": "0.8.1",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
- "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
- "dev": true
- },
- "typedarray-to-buffer": {
- "version": "3.1.5",
- "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
- "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
- "dev": true,
- "requires": {
- "is-typedarray": "^1.0.0"
- }
- },
- "unicode-canonical-property-names-ecmascript": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz",
- "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==",
- "dev": true
- },
- "unicode-match-property-ecmascript": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz",
- "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==",
- "dev": true,
- "requires": {
- "unicode-canonical-property-names-ecmascript": "^1.0.4",
- "unicode-property-aliases-ecmascript": "^1.0.4"
- }
- },
- "unicode-match-property-value-ecmascript": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz",
- "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==",
- "dev": true
- },
- "unicode-property-aliases-ecmascript": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz",
- "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==",
- "dev": true
- },
- "union-value": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz",
- "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==",
- "dev": true,
- "requires": {
- "arr-union": "^3.1.0",
- "get-value": "^2.0.6",
- "is-extendable": "^0.1.1",
- "set-value": "^2.0.1"
- }
- },
- "uniq": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz",
- "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=",
- "dev": true
- },
- "unique-filename": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz",
- "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==",
- "dev": true,
- "requires": {
- "unique-slug": "^2.0.0"
- }
- },
- "unique-slug": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz",
- "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==",
- "dev": true,
- "requires": {
- "imurmurhash": "^0.1.4"
- }
- },
- "unset-value": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz",
- "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=",
- "dev": true,
- "requires": {
- "has-value": "^0.3.1",
- "isobject": "^3.0.0"
- },
- "dependencies": {
- "has-value": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz",
- "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=",
- "dev": true,
- "requires": {
- "get-value": "^2.0.3",
- "has-values": "^0.1.4",
- "isobject": "^2.0.0"
- },
- "dependencies": {
- "isobject": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
- "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=",
- "dev": true,
- "requires": {
- "isarray": "1.0.0"
- }
- }
- }
- },
- "has-values": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz",
- "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=",
- "dev": true
- }
- }
- },
- "upath": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz",
- "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==",
- "dev": true,
- "optional": true
- },
- "uri-js": {
- "version": "4.4.0",
- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz",
- "integrity": "sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==",
- "dev": true,
- "requires": {
- "punycode": "^2.1.0"
- }
- },
- "urix": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
- "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=",
- "dev": true
- },
- "use": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
- "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==",
- "dev": true
- },
- "util-deprecate": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
- "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=",
- "dev": true
- },
- "uuid": {
- "version": "8.3.1",
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.1.tgz",
- "integrity": "sha512-FOmRr+FmWEIG8uhZv6C2bTgEVXsHk08kE7mPlrBbEe+c3r9pjceVPgupIfNIhc4yx55H69OXANrUaSuu9eInKg==",
- "dev": true,
- "optional": true
- },
- "v8-compile-cache": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz",
- "integrity": "sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==",
- "dev": true
- },
- "validate-npm-package-license": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
- "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
- "dev": true,
- "requires": {
- "spdx-correct": "^3.0.0",
- "spdx-expression-parse": "^3.0.0"
- }
- },
- "validate-npm-package-name": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz",
- "integrity": "sha1-X6kS2B630MdK/BQN5zF/DKffQ34=",
- "dev": true,
- "requires": {
- "builtins": "^1.0.3"
- }
- },
- "verror": {
- "version": "1.10.0",
- "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
- "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
- "dev": true,
- "requires": {
- "assert-plus": "^1.0.0",
- "core-util-is": "1.0.2",
- "extsprintf": "^1.2.0"
- }
- },
- "vm2": {
- "version": "3.9.2",
- "resolved": "https://registry.npmjs.org/vm2/-/vm2-3.9.2.tgz",
- "integrity": "sha512-nzyFmHdy2FMg7mYraRytc2jr4QBaUY3TEGe3q3bK8EgS9WC98wxn2jrPxS/ruWm+JGzrEIIeufKweQzVoQEd+Q==",
- "dev": true
- },
- "w3c-hr-time": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
- "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==",
- "dev": true,
- "requires": {
- "browser-process-hrtime": "^1.0.0"
- }
- },
- "w3c-xmlserializer": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz",
- "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==",
- "dev": true,
- "requires": {
- "xml-name-validator": "^3.0.0"
- }
- },
- "walker": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz",
- "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=",
- "dev": true,
- "requires": {
- "makeerror": "1.0.x"
- }
- },
- "webidl-conversions": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
- "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==",
- "dev": true
- },
- "whatwg-encoding": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz",
- "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==",
- "dev": true,
- "requires": {
- "iconv-lite": "0.4.24"
- }
- },
- "whatwg-mimetype": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz",
- "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==",
- "dev": true
- },
- "whatwg-url": {
- "version": "8.4.0",
- "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.4.0.tgz",
- "integrity": "sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw==",
- "dev": true,
- "requires": {
- "lodash.sortby": "^4.7.0",
- "tr46": "^2.0.2",
- "webidl-conversions": "^6.1.0"
- }
- },
- "which": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
- "dev": true,
- "requires": {
- "isexe": "^2.0.0"
- }
- },
- "which-module": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
- "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=",
- "dev": true
- },
- "word-wrap": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
- "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
- "dev": true
- },
- "wrap-ansi": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
- "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "dev": true
- },
- "is-fullwidth-code-point": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
- "dev": true
- },
- "string-width": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
- "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
- "dev": true,
- "requires": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.0"
- }
- }
- }
- },
- "wrappy": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
- "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
- "dev": true
- },
- "write": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz",
- "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==",
- "dev": true,
- "requires": {
- "mkdirp": "^0.5.1"
- },
- "dependencies": {
- "mkdirp": {
- "version": "0.5.5",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
- "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
- "dev": true,
- "requires": {
- "minimist": "^1.2.5"
- }
- }
- }
- },
- "write-file-atomic": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
- "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
- "dev": true,
- "requires": {
- "imurmurhash": "^0.1.4",
- "is-typedarray": "^1.0.0",
- "signal-exit": "^3.0.2",
- "typedarray-to-buffer": "^3.1.5"
- }
- },
- "ws": {
- "version": "7.3.1",
- "resolved": "https://registry.npmjs.org/ws/-/ws-7.3.1.tgz",
- "integrity": "sha512-D3RuNkynyHmEJIpD2qrgVkc9DQ23OrN/moAwZX4L8DfvszsJxpjQuUq3LMx6HoYji9fbIOBY18XWBsAux1ZZUA==",
- "dev": true
- },
- "xml-name-validator": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
- "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==",
- "dev": true
- },
- "xmlchars": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
- "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
- "dev": true
- },
- "yallist": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
- "dev": true
- },
- "yaml": {
- "version": "1.10.0",
- "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz",
- "integrity": "sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==",
- "dev": true
- },
- "yargs-parser": {
- "version": "18.1.3",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
- "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
- "dev": true,
- "requires": {
- "camelcase": "^5.0.0",
- "decamelize": "^1.2.0"
- }
- },
- "yocto-queue": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
- "dev": true
- }
- }
+ "packages": {}
}
diff --git a/productData.js b/productData.js
new file mode 100644
index 00000000..e69de29b
diff --git a/productDetails.js b/productDetails.js
new file mode 100644
index 00000000..e69de29b
diff --git a/snowpack.config.js b/snowpack.config.js
index 22c50b64..fed10162 100644
--- a/snowpack.config.js
+++ b/snowpack.config.js
@@ -1,22 +1,20 @@
module.exports = {
- 'plugins': [
+ plugins: [
// ['@snowpack/plugin-sass' ],
],
- 'mount': {
-
- 'src': '/'
- },
- 'buildOptions': {
- 'out': 'build',
- 'baseUrl': '/sleepoutside/build/',
- 'clean': true
- },
- 'experiments': {
- 'optimize': {
+ mount: {
+ src: "/",
+ },
+ buildOptions: {
+ out: "build",
+ baseUrl: "/sleepoutside/build/",
+ clean: true,
+ },
+ experiments: {
+ optimize: {
// 'bundle': true,
- 'minify': true,
- 'target': 'es2015'
- }
- }
-
-}
+ minify: true,
+ target: "es2015",
+ },
+ },
+};
diff --git a/src/cart.html b/src/cart.html
index fedfea72..47927a98 100644
--- a/src/cart.html
+++ b/src/cart.html
@@ -1,83 +1,83 @@
-
-
-
-
-
- Sleep Outside | Cart
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+ Sleep Outside | Cart
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/checkout.html b/src/checkout.html
index 7e523c8f..069ab381 100644
--- a/src/checkout.html
+++ b/src/checkout.html
@@ -1,50 +1,50 @@
-
-
-
-
-
- Sleep Outside | Checkout
-
-
-
-
-
-
- Review & Place your Order
-
-
-
-
-
+
+
+
+
+
+ Sleep Outside | Checkout
+
+
+
+
+
+
+ Review & Place your Order
+
+
+
+
+
diff --git a/src/css/style.css b/src/css/style.css
index b5a522e2..799fa89c 100644
--- a/src/css/style.css
+++ b/src/css/style.css
@@ -1,221 +1,221 @@
-:root {
- --font-body: Arial, Helvetica, sans-serif;
- --font-headline: Haettenschweiler, "Arial Narrow Bold", sans-serif;
- /* colors */
- --primary-color: #f0a868;
- --secondary-color: #525b0f;
- --tertiary-color: #a4b8c4;
- --light-grey: #d0d0d0;
- --dark-grey: #303030;
-
- /* sizes */
- --font-base: 18px;
- --small-font: 0.8em;
- --large-font: 1.2em;
-}
-* {
- box-sizing: border-box;
-}
-body {
- margin: 0;
- font-family: var(--font-body);
- font-size: var(--font-base);
- color: var(--dark-grey);
-}
-img {
- max-width: 100%;
-}
-header {
- display: flex;
- justify-content: space-between;
- padding: 0 10px;
-}
-.logo {
- line-height: 60px;
- width: 245px;
- overflow: hidden;
- display: flex;
- font-size: 30px;
- text-align: right;
- font-family: var(--font-headline);
-}
-.logo img {
- width: 60px;
- height: 60px;
-}
-.logo a {
- text-decoration: none;
- color: var(--font-body);
-}
-.hero {
- position: relative;
-}
-.hero .logo {
- position: absolute;
- left: calc(50% - 60px);
- bottom: -10px;
- background-color: white;
-}
-.logo--square {
- font-size: var(--small-font);
- width: 110px;
- height: 80px;
-
- flex-direction: column;
- align-items: flex-end;
- box-shadow: 1px 1px 4px var(--light-grey);
- justify-content: center;
- align-items: center;
- line-height: 1;
-}
-.logo--square img {
- width: 90px;
- height: 90px;
- margin-top: -1.3em;
-}
-.logo--square > div {
- margin-top: -1.7em;
-}
-/* utility classes */
-.highlight {
- color: var(--tertiary-color);
-}
-
-button {
- padding: 0.5em 2em;
- background-color: var(--secondary-color);
- color: white;
- margin: auto;
- display: block;
- border: 0;
- font-size: var(--large-font);
-}
-.divider {
- border-bottom: 2px solid var(--primary-color);
-}
-/* End utility classes */
-
-/* Cart icon styles */
-.cart {
- padding-top: 1em;
- position: relative;
- text-align: center;
-}
-
-.cart svg {
- width: 25px;
-}
-.cart:hover svg {
- fill: gray;
-}
-
-/* End cart icon styles */
-
-.mission {
- padding: 0 0.5em;
- /* margin: 0.5em 0; */
- line-height: 1.3;
- max-width: 600px;
- margin: auto;
-}
-.products {
- padding: 0.5em;
-}
-.product-list {
- display: flex;
- flex-flow: row wrap;
- justify-content: space-between;
- list-style-type: none;
- padding: 0;
-}
-.product-list a {
- text-decoration: none;
- color: var(--dark-grey);
-}
-/* Styles for product lists */
-.product-card {
- flex: 1 1 45%;
- margin: 0.25em;
- padding: 0.5em;
- border: 1px solid var(--light-grey);
- max-width: 250px;
-}
-.product-card h2,
-.product-card h3,
-.product-card p {
- margin: 0.5em 0;
-}
-
-.card__brand {
- font-size: var(--small-font);
-}
-
-.card__name {
- font-size: 1em;
-}
-/* End product list card */
-
-.product-detail {
- padding: 1em;
- max-width: 500px;
- margin: auto;
-}
-
-.product-detail img {
- width: 100%;
-}
-
-/* Start cart list card styles */
-.cart-card {
- display: grid;
- grid-template-columns: 25% auto 15%;
- font-size: var(--small-font);
- /* max-height: 120px; */
- align-items: center;
-}
-
-.cart-card__image {
- grid-row: 1/3;
- grid-column: 1;
-}
-.cart-card p {
- margin-top: 0;
-}
-.cart-card .card__name {
- grid-row: 1;
- grid-column: 2;
-}
-
-.cart-card__color {
- grid-row: 2;
- grid-column: 2;
-}
-
-.cart-card__quantity {
- grid-row: 1;
- grid-column: 3;
-}
-
-.cart-card__price {
- grid-row: 2;
- grid-column: 3;
-}
-
-@media screen and (min-width: 500px) {
- body {
- max-width: 1080px;
- margin: auto;
- }
- .mission {
- font-size: 1.2em;
- }
- .cart-card {
- font-size: inherit;
- grid-template-columns: 150px auto 15%;
- }
-}
-
-footer {
- font-size: var(--small-font);
- padding: 1em;
-}
+:root {
+ --font-body: Arial, Helvetica, sans-serif;
+ --font-headline: Haettenschweiler, "Arial Narrow Bold", sans-serif;
+ /* colors */
+ --primary-color: #f0a868;
+ --secondary-color: #525b0f;
+ --tertiary-color: #a4b8c4;
+ --light-grey: #d0d0d0;
+ --dark-grey: #303030;
+
+ /* sizes */
+ --font-base: 18px;
+ --small-font: 0.8em;
+ --large-font: 1.2em;
+}
+* {
+ box-sizing: border-box;
+}
+body {
+ margin: 0;
+ font-family: var(--font-body);
+ font-size: var(--font-base);
+ color: var(--dark-grey);
+}
+img {
+ max-width: 100%;
+}
+header {
+ display: flex;
+ justify-content: space-between;
+ padding: 0 10px;
+}
+.logo {
+ line-height: 60px;
+ width: 245px;
+ overflow: hidden;
+ display: flex;
+ font-size: 30px;
+ text-align: right;
+ font-family: var(--font-headline);
+}
+.logo img {
+ width: 60px;
+ height: 60px;
+}
+.logo a {
+ text-decoration: none;
+ color: var(--font-body);
+}
+.hero {
+ position: relative;
+}
+.hero .logo {
+ position: absolute;
+ left: calc(50% - 60px);
+ bottom: -10px;
+ background-color: white;
+}
+.logo--square {
+ font-size: var(--small-font);
+ width: 110px;
+ height: 80px;
+
+ flex-direction: column;
+ align-items: flex-end;
+ box-shadow: 1px 1px 4px var(--light-grey);
+ justify-content: center;
+ align-items: center;
+ line-height: 1;
+}
+.logo--square img {
+ width: 90px;
+ height: 90px;
+ margin-top: -1.3em;
+}
+.logo--square > div {
+ margin-top: -1.7em;
+}
+/* utility classes */
+.highlight {
+ color: var(--tertiary-color);
+}
+
+button {
+ padding: 0.5em 2em;
+ background-color: var(--secondary-color);
+ color: white;
+ margin: auto;
+ display: block;
+ border: 0;
+ font-size: var(--large-font);
+}
+.divider {
+ border-bottom: 2px solid var(--primary-color);
+}
+/* End utility classes */
+
+/* Cart icon styles */
+.cart {
+ padding-top: 1em;
+ position: relative;
+ text-align: center;
+}
+
+.cart svg {
+ width: 25px;
+}
+.cart:hover svg {
+ fill: gray;
+}
+
+/* End cart icon styles */
+
+.mission {
+ padding: 0 0.5em;
+ /* margin: 0.5em 0; */
+ line-height: 1.3;
+ max-width: 600px;
+ margin: auto;
+}
+.products {
+ padding: 0.5em;
+}
+.product-list {
+ display: flex;
+ flex-flow: row wrap;
+ justify-content: space-between;
+ list-style-type: none;
+ padding: 0;
+}
+.product-list a {
+ text-decoration: none;
+ color: var(--dark-grey);
+}
+/* Styles for product lists */
+.product-card {
+ flex: 1 1 45%;
+ margin: 0.25em;
+ padding: 0.5em;
+ border: 1px solid var(--light-grey);
+ max-width: 250px;
+}
+.product-card h2,
+.product-card h3,
+.product-card p {
+ margin: 0.5em 0;
+}
+
+.card__brand {
+ font-size: var(--small-font);
+}
+
+.card__name {
+ font-size: 1em;
+}
+/* End product list card */
+
+.product-detail {
+ padding: 1em;
+ max-width: 500px;
+ margin: auto;
+}
+
+.product-detail img {
+ width: 100%;
+}
+
+/* Start cart list card styles */
+.cart-card {
+ display: grid;
+ grid-template-columns: 25% auto 15%;
+ font-size: var(--small-font);
+ /* max-height: 120px; */
+ align-items: center;
+}
+
+.cart-card__image {
+ grid-row: 1/3;
+ grid-column: 1;
+}
+.cart-card p {
+ margin-top: 0;
+}
+.cart-card .card__name {
+ grid-row: 1;
+ grid-column: 2;
+}
+
+.cart-card__color {
+ grid-row: 2;
+ grid-column: 2;
+}
+
+.cart-card__quantity {
+ grid-row: 1;
+ grid-column: 3;
+}
+
+.cart-card__price {
+ grid-row: 2;
+ grid-column: 3;
+}
+
+@media screen and (min-width: 500px) {
+ body {
+ max-width: 1080px;
+ margin: auto;
+ }
+ .mission {
+ font-size: 1.2em;
+ }
+ .cart-card {
+ font-size: inherit;
+ grid-template-columns: 150px auto 15%;
+ }
+}
+
+footer {
+ font-size: var(--small-font);
+ padding: 1em;
+}
\ No newline at end of file
diff --git a/src/images/category-icons/noun_Hammock_791143.svg b/src/images/category-icons/noun_Hammock_791143.svg
new file mode 100644
index 00000000..3601429b
--- /dev/null
+++ b/src/images/category-icons/noun_Hammock_791143.svg
@@ -0,0 +1,3 @@
+Artboard Copy 2 Created with Sketch.
+
+
diff --git a/src/images/category-icons/noun_Sleeping Bag_3544775.svg b/src/images/category-icons/noun_Sleeping Bag_3544775.svg
new file mode 100644
index 00000000..6ab95a6b
--- /dev/null
+++ b/src/images/category-icons/noun_Sleeping Bag_3544775.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/src/images/category-icons/noun_Tent_3544767.svg b/src/images/category-icons/noun_Tent_3544767.svg
new file mode 100644
index 00000000..f437f0f9
--- /dev/null
+++ b/src/images/category-icons/noun_Tent_3544767.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/src/images/category-icons/noun_carrier bag_3544771.svg b/src/images/category-icons/noun_carrier bag_3544771.svg
new file mode 100644
index 00000000..b95f0e0f
--- /dev/null
+++ b/src/images/category-icons/noun_carrier bag_3544771.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/src/images/noun_Backpack_65884.svg b/src/images/noun_Backpack_65884.svg
index 1ae7f4f4..01d3300c 100644
--- a/src/images/noun_Backpack_65884.svg
+++ b/src/images/noun_Backpack_65884.svg
@@ -1,23 +1,23 @@
-
-
-
-
-
+
+
+
+
+
\ No newline at end of file
diff --git a/src/index.html b/src/index.html
index 74e688ed..f53a273a 100644
--- a/src/index.html
+++ b/src/index.html
@@ -1,106 +1,91 @@
-
-
-
-
-
- Sleep Outside | Home
-
-
-
-
-
-
-
-
-
-
SleepOutside
-
-
-
- We spend too much time these days indoors...sitting usually.
- No wonder we are a mess!
-
- What we really need is to get outside...in fact SLEEP outside. Our
- mission is to provide you with everything you need to do this
- comfortably at an affordable price.
-
-
-
-
-
-
-
+
+
+
+
+
+ Sleep Outside | Home
+
+
+
+
+
+
+
+
+ $
+
+
+
+
+
+
+
+
+
+
+
+
SleepOutside
+
+
+
+ We spend too much time these days indoors...sitting usually.
+ No wonder we are a mess!
+
+ What we really need is to get outside...in fact SLEEP outside. Our
+ mission is to provide you with everything you need to do this
+ comfortably at an affordable price.
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/js/ExternalServices.js b/src/js/ExternalServices.js
new file mode 100644
index 00000000..529d71fa
--- /dev/null
+++ b/src/js/ExternalServices.js
@@ -0,0 +1,38 @@
+const baseURL = "http://157.201.228.93:2992/";
+// const baseURL = 'http://127.0.0.1:3000/';
+async function convertToJson(res) {
+ const data = await res.json();
+ if (res.ok) {
+ return data
+ } else {
+ throw { name: "servicesError", message: data };
+ }
+}
+
+export default class ExternalServices {
+ constructor() {
+ //Using the API means we don't need to tie the dataSource to a specific category anymore. So we can remove this in the constructor.
+ // this.category = category;
+ // this.path = `../json/${this.category}.json`;
+ }
+ getData(category) {
+ // instead we will pass the category we want in here when we need it.
+ return fetch(baseURL + `products/search/${category}`)
+ .then(convertToJson)
+ .then((data) => data.Result);
+ }
+ async findProductById(id) {
+ return await fetch(baseURL + `product/${id}`).then(convertToJson)
+ .then((data) => data.Result);
+ }
+ async checkout(payload) {
+ const options = {
+ method: "POST",
+ headers: {
+ "Content-Type": "application/json",
+ },
+ body: JSON.stringify(payload),
+ };
+ return await fetch(baseURL + "checkout/", options).then(convertToJson);
+ }
+}
\ No newline at end of file
diff --git a/src/js/cart.js b/src/js/cart.js
index e1f0ca61..a2321064 100644
--- a/src/js/cart.js
+++ b/src/js/cart.js
@@ -1,32 +1,32 @@
-function getLocalStorage(key) {
- return JSON.parse(localStorage.getItem(key));
-}
-
-function getCartContents() {
- let markup = '';
- const cartItems = getLocalStorage('so-cart');
- const htmlItems = cartItems.map((item) => renderCartItem(item));
- document.querySelector('.product-list').innerHTML = htmlItems.join('');
- // document.querySelector(".product-list").innerHTML = renderCartItem(cartItems);
-}
-
-function renderCartItem(item) {
-const newItem = `
-
-
-
-
- ${item.Name}
-
- ${item.Colors[0].ColorName}
- qty: 1
- $${item.FinalPrice}
- `;
- console.log(newItem);
- return newItem;
-}
-
-getCartContents();
+function getLocalStorage(key) {
+ return JSON.parse(localStorage.getItem(key));
+}
+
+function getCartContents() {
+ let markup = "";
+ const cartItems = getLocalStorage("so-cart");
+ const htmlItems = cartItems.map((item) => renderCartItem(item));
+ document.querySelector(".product-list").innerHTML = htmlItems.join("");
+ // document.querySelector(".product-list").innerHTML = renderCartItem(cartItems);
+}
+
+function renderCartItem(item) {
+ const newItem = `
+
+
+
+
+ ${item.Name}
+
+ ${item.Colors[0].ColorName}
+ qty: 1
+ $${item.FinalPrice}
+ `;
+ console.log(newItem);
+ return newItem;
+}
+
+getCartContents();
diff --git a/src/js/main.js b/src/js/main.js
index e69de29b..789aac30 100644
--- a/src/js/main.js
+++ b/src/js/main.js
@@ -0,0 +1,11 @@
+import ProductData from './productData.js';
+import ProductList from './productList.js';
+
+// first create an instance of our ProductData class.
+const dataSource = new ProductData('tents');
+// then get the element we want the product list to render in
+const listElement = document.querySelector('.product-list');
+// then create an instance of our ProductList class and send it the correct information.
+const myList = new ProductList('tents', dataSource, listElement);
+// finally call the init method to show our products
+myList.init();
\ No newline at end of file
diff --git a/src/js/product-listing.js b/src/js/product-listing.js
new file mode 100644
index 00000000..e69de29b
diff --git a/src/js/product.js b/src/js/product.js
deleted file mode 100644
index a855b152..00000000
--- a/src/js/product.js
+++ /dev/null
@@ -1,35 +0,0 @@
-let products = [];
-function convertToJson(res) {
- if (res.ok) {
- return res.json();
- } else {
- throw new Error("Bad Response");
- }
-}
-
-function setLocalStorage(key, data) {
- localStorage.setItem(key, JSON.stringify(data));
-}
-
-// get tents data
-function getProductsData() {
- fetch("../json/tents.json")
- .then(convertToJson)
- .then((data) => {
- products = data;
- });
-}
-// or should we do it this way?
-// async function getProductsDataAwait() {
-// products = await fetch("../json/tents.json").then(convertToJson);
-// }
-
-// add to cart button event handler
-function addToCart(e) {
- const product = products.find((item) => item.Id === e.target.dataset.id);
- setLocalStorage("so-cart", product);
-}
-
-getProductsData();
-// add listener to Add to Cart button
-document.getElementById("addToCart").addEventListener("click", addToCart);
diff --git a/src/js/productData.js b/src/js/productData.js
new file mode 100644
index 00000000..a33225b5
--- /dev/null
+++ b/src/js/productData.js
@@ -0,0 +1,29 @@
+const baseURL = 'http://server-nodejs.cit.byui.edu:3000/'
+function convertToJson(res) {
+ if (res.ok) {
+ return res.json();
+ } else {
+ throw new Error('Bad Response');
+ }
+}
+
+export default class ProductData {
+ constructor() {
+ //Using the API means we don't need to tie the dataSource to a specific category anymore. So we can remove this in the constructor.
+ // this.category = category;
+ // this.path = `../json/${this.category}.json`;
+
+ }
+ getData(category) {
+ // instead we will pass the category we want in here when we need it.
+ return fetch(baseURL + `products/search/${category}`)
+ .then(convertToJson).then((data) => data.Result);
+ }
+ async findProductById(id) {
+ //const products = await this.getData()
+ //return products.find((item) => item.Id === id);
+ // the API allows us to pull products directly from it by ID...so we can change this method as well to take advantage of that.
+ return await fetch(baseURL + `product/${id}`).then(convertToJson)
+ .then((data) => data.Result);
+ }
+}
\ No newline at end of file
diff --git a/src/js/productDetails.js b/src/js/productDetails.js
new file mode 100644
index 00000000..48e4ec8d
--- /dev/null
+++ b/src/js/productDetails.js
@@ -0,0 +1,48 @@
+import { setLocalStorage, getLocalStorage, loadHeaderFooter } from './utils.js';
+
+
+loadHeaderFooter();
+export default class ProductDetails {
+ constructor(productId, dataSource){
+ this.productId = productId;
+ this.product = {};
+ this.dataSource = dataSource;
+
+ }
+ async init() {
+ this.product = await this.dataSource.findProductById(this.productId);
+ document.querySelector('main').innerHTML = this.renderProductDetails();
+ // add listener to Add to Cart button
+ document.getElementById('addToCart')
+ .addEventListener('click', this.addToCart.bind(this));
+ }
+ addToCart() {
+ // to fix the cart we need to get anything that is in the cart already.
+ let cartContents = getLocalStorage('so-cart');
+ //check to see if there was anything there
+ if(!cartContents){
+ cartContents = [];
+ }
+ // then add the current product to the list
+ cartContents.push(this.product);
+ setLocalStorage('so-cart', cartContents);
+ }
+ renderProductDetails() {
+ return ` ${this.product.Brand.Name}
+ ${this.product.NameWithoutBrand}
+
+ $${this.product.FinalPrice}
+ ${this.product.Colors[0].ColorName}
+
+ ${this.product.DescriptionHtmlSimple}
+
+
+ Add to Cart
+
`;
+ }
+
+}
\ No newline at end of file
diff --git a/src/js/productList.js b/src/js/productList.js
new file mode 100644
index 00000000..8def47d3
--- /dev/null
+++ b/src/js/productList.js
@@ -0,0 +1,15 @@
+import ProductData from './productData.js';
+import ProductList from './productList.js';
+import { loadHeaderFooter, getParam } from './utils.js';
+
+loadHeaderFooter();
+
+const category = getParam('category');
+// first create an instance of our ProductData class.
+const dataSource = new ProductData();
+// then get the element we want the product list to render in
+const listElement = document.querySelector('.product-list');
+// then create an instance of our ProductList class and send it the correct information.
+const myList = new ProductList(category, dataSource, listElement);
+// finally call the init method to show our products
+myList.init();
\ No newline at end of file
diff --git a/src/js/utils.js b/src/js/utils.js
index 1a04d87f..8f08b565 100644
--- a/src/js/utils.js
+++ b/src/js/utils.js
@@ -1,23 +1,23 @@
-// wrapper for querySelector...returns matching element
-export function qs(selector, parent = document) {
- return parent.querySelector(selector);
-}
-// or a more concise version if you are into that sort of thing:
-// export const qs = (selector, parent = document) => parent.querySelector(selector);
-
-// retrieve data from localstorage
-export function getLocalStorage(key) {
- return JSON.parse(localStorage.getItem(key));
-}
-// save data to local storage
-export function setLocalStorage(key, data) {
- localStorage.setItem(key, JSON.stringify(data));
-}
-// set a listener for both touchend and click
-export function setClick(selector, callback) {
- qs(selector).addEventListener("touchend", (event) => {
- event.preventDefault();
- callback();
- });
- qs(selector).addEventListener("click", callback);
-}
+// wrapper for querySelector...returns matching element
+export function qs(selector, parent = document) {
+ return parent.querySelector(selector);
+}
+// or a more concise version if you are into that sort of thing:
+// export const qs = (selector, parent = document) => parent.querySelector(selector);
+
+// retrieve data from localstorage
+export function getLocalStorage(key) {
+ return JSON.parse(localStorage.getItem(key));
+}
+// save data to local storage
+export function setLocalStorage(key, data) {
+ localStorage.setItem(key, JSON.stringify(data));
+}
+// set a listener for both touchend and click
+export function setClick(selector, callback) {
+ qs(selector).addEventListener("touchend", (event) => {
+ event.preventDefault();
+ callback();
+ });
+ qs(selector).addEventListener("click", callback);
+}
diff --git a/src/json/backpacks.json b/src/json/backpacks.json
index e868cb81..880a41a1 100644
--- a/src/json/backpacks.json
+++ b/src/json/backpacks.json
@@ -1,3482 +1,3482 @@
-{
- "Count": 64,
- "Page": 1,
- "PerPage": 24,
- "NextPageUrl": "/api/1.0/products/s~backpacks/?page=2",
- "LastPageUrl": "/api/1.0/products/s~backpacks/?page=3",
- "RefinementsUrl": "/api/1.0/refinements/search~backpacks/",
- "Title": "Search for \"backpacks\" ",
- "Result": [
- {
- "Id": "223RN",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/223rn/",
- "WebUrl": "https://www.sierra.com/product/bounce/223rn/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/223rn/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/223rn/",
- "ReviewCount": 11,
- "AverageRating": 4.64
- },
- "NameWithoutBrand": "Zulu 55 Backpack - Internal Frame",
- "Name": "Gregory Zulu 55 Backpack - Internal Frame",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame-in-moss-green~p~223rn_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame-in-moss-green~p~223rn_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame-in-moss-green~p~223rn_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame-in-moss-green~p~223rn_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame~a~223rn_2~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame~a~223rn_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": { "SIZE": ["M", "L"] },
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Moss Green",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/223rn-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame-in-moss-green~p~223rn_02~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . Gregory's Zulu 55 backpack boasts a streamlined, yet spacious design ideal for weekend trips and winter overnights. The highly breathable CrossFlo DTS suspension system keeps air circulating across your back, and the bottom compartment offers easy access to your sleeping bag.",
- "SuggestedRetailPrice": 199.0,
- "Brand": {
- "Id": "7155",
- "Url": "/api/1.0/brand/7155/",
- "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
- "LogoSrc": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame~b~7155~160x100.jpg",
- "Name": "Gregory"
- },
- "ListPrice": 129.99,
- "FinalPrice": 129.99
- },
- {
- "Id": "810NV",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/810nv/",
- "WebUrl": "https://www.sierra.com/product/bounce/810nv/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/810nv/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/810nv/",
- "ReviewCount": 1,
- "AverageRating": 5.0
- },
- "NameWithoutBrand": "Paragon 58L Backpack - Internal Frame",
- "Name": "Gregory Paragon 58L Backpack - Internal Frame",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame-in-sunset-grey~p~810nv_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame-in-sunset-grey~p~810nv_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame-in-sunset-grey~p~810nv_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame-in-sunset-grey~p~810nv_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame~a~810nv_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": { "SIZE": ["S/M", "M/L"] },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Sunset Grey",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/810nv-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame-in-sunset-grey~p~810nv_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . The perfect lightweight companion for overnighting and minimalist trekking, Gregory's Paragon 58L backpack is well-balanced with an alloy Aerolon suspension for outstanding load support and plenty of pockets for organization.",
- "SuggestedRetailPrice": 189.99,
- "Brand": {
- "Id": "7155",
- "Url": "/api/1.0/brand/7155/",
- "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
- "LogoSrc": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame~b~7155~160x100.jpg",
- "Name": "Gregory"
- },
- "ListPrice": 129.99,
- "FinalPrice": 129.99
- },
- {
- "Id": "848MJ",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/848mj/",
- "WebUrl": "https://www.sierra.com/product/bounce/848mj/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848mj/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/848mj/",
- "ReviewCount": 1,
- "AverageRating": 3.0
- },
- "NameWithoutBrand": "Versant 70L Backpack - Internal Frame (For Men)",
- "Name": "Thule Versant 70L Backpack - Internal Frame (For Men)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men-in-fjord~p~848mj_03~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men-in-fjord~p~848mj_03~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men-in-fjord~p~848mj_03~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men-in-fjord~p~848mj_03~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men~a~848mj_2~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men~a~848mj_3~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men~a~848mj_4~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men~a~848mj_5~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "03",
- "ColorName": "Fjord",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848mj-03.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men-in-fjord~p~848mj_03~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . When your fun backpacking trip turns into a stormy mess, Thule's Versant 70L backpack has you covered with an integrated StormGuard weatherproofing system that keeps your gear safe from moisture. The adjustable torso and waistbelt ensure the pack fits perfectly every time (even over extra layers), and the main compartment is accessible via the top or a wide-opening front zip panel so that you don't have to totally unpack your bag every time you want something.",
- "SuggestedRetailPrice": 215.0,
- "Brand": {
- "Id": "2757",
- "Url": "/api/1.0/brand/2757/",
- "ProductsUrl": "/api/1.0/products/thule~b~2757/",
- "LogoSrc": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men~b~2757~160x100.jpg",
- "Name": "Thule"
- },
- "ListPrice": 129.99,
- "FinalPrice": 129.99
- },
- {
- "Id": "541HM",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/541hm/",
- "WebUrl": "https://www.sierra.com/product/bounce/541hm/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/541hm/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/541hm/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Revol 50L Backpack",
- "Name": "Kelty Revol 50L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/kelty-revol-50l-backpack-in-raven~p~541hm_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/kelty-revol-50l-backpack-in-raven~p~541hm_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/kelty-revol-50l-backpack-in-raven~p~541hm_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/kelty-revol-50l-backpack-in-raven~p~541hm_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/kelty-revol-50l-backpack~a~541hm_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/kelty-revol-50l-backpack~a~541hm_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Raven",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/541hm-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/kelty-revol-50l-backpack-in-raven~p~541hm_02~160.jpg"
- },
- {
- "ColorCode": "01",
- "ColorName": "Forest Green",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/541hm-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/kelty-revol-50l-backpack-in-forest-green~p~541hm_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . A tried and trusted trail pack upgraded with modern, streamlined features and plenty of space for multi-day excursions, Kelty Revol 50L backpack boasts the Kinesis waistbelt that moves and adjusts with your every step, and a parallel-pivot design that keeps the shape of the waistbelt contoured to your body as you hike.",
- "SuggestedRetailPrice": 149.99,
- "Brand": {
- "Id": "1105",
- "Url": "/api/1.0/brand/1105/",
- "ProductsUrl": "/api/1.0/products/kelty~b~1105/",
- "LogoSrc": "https://i.stpost.com/kelty-revol-50l-backpack~b~1105~160x100.jpg",
- "Name": "Kelty"
- },
- "ListPrice": 119.99,
- "FinalPrice": 119.99
- },
- {
- "Id": "848MD",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/848md/",
- "WebUrl": "https://www.sierra.com/product/bounce/848md/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848md/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/848md/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Versant 60L Backpack - Internal Frame (For Men)",
- "Name": "Thule Versant 60L Backpack - Internal Frame (For Men)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men-in-fjord~p~848md_03~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men-in-fjord~p~848md_03~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men-in-fjord~p~848md_03~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men-in-fjord~p~848md_03~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men~a~848md_2~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men~a~848md_3~600.2.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "03",
- "ColorName": "Fjord",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848md-03.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men-in-fjord~p~848md_03~160.jpg"
- },
- {
- "ColorCode": "02",
- "ColorName": "Dark Forest",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848md-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men-in-dark-forest~p~848md_02~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Excess . When your fun backpacking trip turns into a stormy mess, Thule's Versant 60L backpack has you covered with an integrated StormGuard weatherproofing system that keeps your gear safe from moisture. The adjustable torso and waistbelt ensure the pack fits perfectly every time (even over extra layers), and the main compartment is accessible via the top and a wide-opening front zip panel. Bonus: The roomy, floating lid quickly converts into a sling pack for day hikes.",
- "SuggestedRetailPrice": 205.0,
- "Brand": {
- "Id": "2757",
- "Url": "/api/1.0/brand/2757/",
- "ProductsUrl": "/api/1.0/products/thule~b~2757/",
- "LogoSrc": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men~b~2757~160x100.jpg",
- "Name": "Thule"
- },
- "ListPrice": 129.99,
- "FinalPrice": 129.99
- },
- {
- "Id": "889PR",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/889pr/",
- "WebUrl": "https://www.sierra.com/product/bounce/889pr/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/889pr/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/889pr/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Stout 45 Adjustable Backpack",
- "Name": "Gregory Stout 45 Adjustable Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/gregory-stout-45-adjustable-backpack-in-prairie-orange~p~889pr_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/gregory-stout-45-adjustable-backpack-in-prairie-orange~p~889pr_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/gregory-stout-45-adjustable-backpack-in-prairie-orange~p~889pr_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/gregory-stout-45-adjustable-backpack-in-prairie-orange~p~889pr_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-stout-45-adjustable-backpack~a~889pr_2~600.3.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-stout-45-adjustable-backpack~a~889pr_3~600.3.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-stout-45-adjustable-backpack~a~889pr_4~600.3.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Prairie Orange",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/889pr-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/gregory-stout-45-adjustable-backpack-in-prairie-orange~p~889pr_02~160.jpg"
- },
- {
- "ColorCode": "01",
- "ColorName": "Navy Blue",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/889pr-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/gregory-stout-45-adjustable-backpack-in-navy-blue~p~889pr_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . Supportive and smartly designed, Gregory's Stout 35 backpack features a TrailFlex wishbone suspension so it carries comfortably when fully loaded. A roomy, yet compact option well-suited to weekend backpacking trips through technical terrain.",
- "SuggestedRetailPrice": 149.99,
- "Brand": {
- "Id": "7155",
- "Url": "/api/1.0/brand/7155/",
- "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
- "LogoSrc": "https://i.stpost.com/gregory-stout-45-adjustable-backpack~b~7155~160x100.jpg",
- "Name": "Gregory"
- },
- "ListPrice": 99.99,
- "FinalPrice": 99.99
- },
- {
- "Id": "928PD",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/928pd/",
- "WebUrl": "https://www.sierra.com/product/bounce/928pd/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/928pd/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/928pd/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Trophy TS 20L Backpack",
- "Name": "CamelBak Trophy TS 20L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack-in-mossy-oak-country-break-up~p~928pd_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack-in-mossy-oak-country-break-up~p~928pd_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack-in-mossy-oak-country-break-up~p~928pd_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack-in-mossy-oak-country-break-up~p~928pd_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack~a~928pd_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack~a~928pd_3~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack~a~928pd_4~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Mossy Oak Country Break-Up",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/928pd-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack-in-mossy-oak-country-break-up~p~928pd_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Keep hunting essentials close at hand using CamelBak's Trophy TS 20 backpack, optimized for stand hunting with a deployable work shelf and a strap-based hanging system.",
- "SuggestedRetailPrice": 149.0,
- "Brand": {
- "Id": "6070",
- "Url": "/api/1.0/brand/6070/",
- "ProductsUrl": "/api/1.0/products/camelbak~b~6070/",
- "LogoSrc": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack~b~6070~160x100.jpg",
- "Name": "CamelBak"
- },
- "ListPrice": 79.99,
- "FinalPrice": 79.99
- },
- {
- "Id": "665HD",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/665hd/",
- "WebUrl": "https://www.sierra.com/product/bounce/665hd/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/665hd/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/665hd/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Maven 45L Backpack - Internal Frame",
- "Name": "Gregory Maven 45L Backpack - Internal Frame",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame-in-forest-grey~p~665hd_03~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame-in-forest-grey~p~665hd_03~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame-in-forest-grey~p~665hd_03~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame-in-forest-grey~p~665hd_03~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame~a~665hd_2~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame~a~665hd_3~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame~a~665hd_4~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": { "SIZE": ["S/M", "XS/S"] },
- "Colors": [
- {
- "ColorCode": "03",
- "ColorName": "Forest Grey",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/665hd-03.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame-in-forest-grey~p~665hd_03~160.jpg"
- },
- {
- "ColorCode": "02",
- "ColorName": "Phoenix Red",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/665hd-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame-in-phoenix-red~p~665hd_02~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . The perfect lightweight companion for peak-bagging and minimalist overnighting, Gregory's Maven 45L backpack is well-balanced with alloy anti-barreling stays and an HDPE sheet for firm support.",
- "SuggestedRetailPrice": 149.99,
- "Brand": {
- "Id": "7155",
- "Url": "/api/1.0/brand/7155/",
- "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
- "LogoSrc": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame~b~7155~160x100.jpg",
- "Name": "Gregory"
- },
- "ListPrice": 99.99,
- "FinalPrice": 99.99
- },
- {
- "Id": "896MX",
- "IsClearance": true,
- "IsNew": false,
- "Url": "/api/1.0/product/896mx/",
- "WebUrl": "https://www.sierra.com/product/bounce/896mx/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896mx/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/896mx/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Manaslu 65L Backpack - Internal Frame",
- "Name": "Lowe Alpine Manaslu 65L Backpack - Internal Frame",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame-in-oxide~p~896mx_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame-in-oxide~p~896mx_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame-in-oxide~p~896mx_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame-in-oxide~p~896mx_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame~a~896mx_2~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame~a~896mx_3~600.2.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Oxide",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mx-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame-in-oxide~p~896mx_01~160.jpg"
- },
- {
- "ColorCode": "02",
- "ColorName": "Shaded Spruce",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mx-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame-in-shaded-spruce~p~896mx_02~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . An epic adventure requires an epic pack, and that's where Lowe Alpine's Manaslu 65L backpack comes in. With its durable construction, expandable lid, Axiom 5 back adjustment system, abundant gear storage and ergonomic design, this backpack is the perfect companion for days, weeks -- or months -- of backpacking or travel.",
- "SuggestedRetailPrice": 255.0,
- "Brand": {
- "Id": "1280",
- "Url": "/api/1.0/brand/1280/",
- "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
- "LogoSrc": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame~b~1280~160x100.jpg",
- "Name": "Lowe Alpine"
- },
- "ListPrice": 119.0,
- "FinalPrice": 119.0
- },
- {
- "Id": "896MT",
- "IsClearance": true,
- "IsNew": false,
- "Url": "/api/1.0/product/896mt/",
- "WebUrl": "https://www.sierra.com/product/bounce/896mt/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896mt/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/896mt/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Mountain Ascent 40L Backpack",
- "Name": "Lowe Alpine Mountain Ascent 40L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-haute-red~p~896mt_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-haute-red~p~896mt_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-haute-red~p~896mt_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-haute-red~p~896mt_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack~a~896mt_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack~a~896mt_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Haute Red",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mt-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-haute-red~p~896mt_01~160.jpg"
- },
- {
- "ColorCode": "02",
- "ColorName": "Marine",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mt-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-marine~p~896mt_02~160.jpg"
- },
- {
- "ColorCode": "03",
- "ColorName": "Onyx",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mt-03.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-onyx~p~896mt_03~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Designed with winter climbers in mind, this Lowe Alpine Mountain Ascent 40L backpack has you covered with plenty of room for your gear, and features gear loops, rope holder, a Headlocker ice axe attachment system and wide slots to tote your powder skis.",
- "SuggestedRetailPrice": 190.0,
- "Brand": {
- "Id": "1280",
- "Url": "/api/1.0/brand/1280/",
- "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
- "LogoSrc": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack~b~1280~160x100.jpg",
- "Name": "Lowe Alpine"
- },
- "ListPrice": 79.0,
- "FinalPrice": 79.0
- },
- {
- "Id": "223RM",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/223rm/",
- "WebUrl": "https://www.sierra.com/product/bounce/223rm/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/223rm/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/223rm/",
- "ReviewCount": 11,
- "AverageRating": 4.27
- },
- "NameWithoutBrand": "Jade 53 Backpack (For Women)",
- "Name": "Gregory Jade 53 Backpack (For Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/gregory-jade-53-backpack-for-women-in-dark-charcoal~p~223rm_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/gregory-jade-53-backpack-for-women-in-dark-charcoal~p~223rm_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/gregory-jade-53-backpack-for-women-in-dark-charcoal~p~223rm_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/gregory-jade-53-backpack-for-women-in-dark-charcoal~p~223rm_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-jade-53-backpack-for-women~a~223rm_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": { "SIZE": ["S", "M"] },
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Dark Charcoal",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/223rm-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/gregory-jade-53-backpack-for-women-in-dark-charcoal~p~223rm_02~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . Designed especially for trail-bound women, Gregory's Jade 53 backpack features an easy-access, expandable front bucket pocket that's perfect for stowing extra layers and rain gear. Plus, the ventilating CrossFlo DTS system offers comfort for the long haul, and the top pocket detaches as a daypack for shorter treks.",
- "SuggestedRetailPrice": 199.0,
- "Brand": {
- "Id": "7155",
- "Url": "/api/1.0/brand/7155/",
- "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
- "LogoSrc": "https://i.stpost.com/gregory-jade-53-backpack-for-women~b~7155~160x100.jpg",
- "Name": "Gregory"
- },
- "ListPrice": 129.99,
- "FinalPrice": 129.99
- },
- {
- "Id": "896NA",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/896na/",
- "WebUrl": "https://www.sierra.com/product/bounce/896na/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896na/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/896na/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Manaslu 55L Backpack - Internal Frame",
- "Name": "Lowe Alpine Manaslu 55L Backpack - Internal Frame",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame-in-shaded-spruce~p~896na_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame-in-shaded-spruce~p~896na_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame-in-shaded-spruce~p~896na_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame-in-shaded-spruce~p~896na_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame~a~896na_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame~a~896na_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Shaded Spruce",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896na-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame-in-shaded-spruce~p~896na_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . An epic adventure requires an epic pack, and that's where Lowe Alpine's Manaslu 55L backpack comes in. With its durable construction, expandable lid, Axiom 5 back adjustment system, abundant gear storage and ergonomic design, this backpack is the perfect companion for mid-range trips.",
- "SuggestedRetailPrice": 240.0,
- "Brand": {
- "Id": "1280",
- "Url": "/api/1.0/brand/1280/",
- "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
- "LogoSrc": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame~b~1280~160x100.jpg",
- "Name": "Lowe Alpine"
- },
- "ListPrice": 149.99,
- "FinalPrice": 149.99
- },
- {
- "Id": "810NW",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/810nw/",
- "WebUrl": "https://www.sierra.com/product/bounce/810nw/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/810nw/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/810nw/",
- "ReviewCount": 1,
- "AverageRating": 5.0
- },
- "NameWithoutBrand": "Maven 55L Backpack - Internal Frame",
- "Name": "Gregory Maven 55L Backpack - Internal Frame",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame-in-river-blue~p~810nw_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame-in-river-blue~p~810nw_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame-in-river-blue~p~810nw_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame-in-river-blue~p~810nw_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame~a~810nw_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": { "SIZE": ["XS/S", "S/M"] },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "River Blue",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/810nw-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame-in-river-blue~p~810nw_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . The perfect lightweight companion for peak-bagging and minimalist overnighting, Gregory's Maven 55L backpack is well-balanced with alloy anti-barreling stays and an HDPE sheet for firm support.",
- "SuggestedRetailPrice": 189.99,
- "Brand": {
- "Id": "7155",
- "Url": "/api/1.0/brand/7155/",
- "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
- "LogoSrc": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame~b~7155~160x100.jpg",
- "Name": "Gregory"
- },
- "ListPrice": 149.99,
- "FinalPrice": 149.99
- },
- {
- "Id": "893WV",
- "IsClearance": true,
- "IsNew": false,
- "Url": "/api/1.0/product/893wv/",
- "WebUrl": "https://www.sierra.com/product/bounce/893wv/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/893wv/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/893wv/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Capstone 32L Backpack - Internal Frame (For Women)",
- "Name": "Thule Capstone 32L Backpack - Internal Frame (For Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women-in-deep-teal~p~893wv_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women-in-deep-teal~p~893wv_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women-in-deep-teal~p~893wv_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women-in-deep-teal~p~893wv_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women~a~893wv_2~600.2.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Deep Teal",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/893wv-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women-in-deep-teal~p~893wv_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Thule's Capstone 32L backpack is a spacious, super-supportive daypack that can be loaded down comfortably for long day hikes and peak scrambling. The MicroAdjust suspension lets you adjust the torso length along the tubular aluminum frame while wearing the pack.",
- "SuggestedRetailPrice": 140.0,
- "Brand": {
- "Id": "2757",
- "Url": "/api/1.0/brand/2757/",
- "ProductsUrl": "/api/1.0/products/thule~b~2757/",
- "LogoSrc": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women~b~2757~160x100.jpg",
- "Name": "Thule"
- },
- "ListPrice": 69.0,
- "FinalPrice": 69.0
- },
- {
- "Id": "810NP",
- "IsClearance": true,
- "IsNew": false,
- "Url": "/api/1.0/product/810np/",
- "WebUrl": "https://www.sierra.com/product/bounce/810np/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/810np/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/810np/",
- "ReviewCount": 1,
- "AverageRating": 5.0
- },
- "NameWithoutBrand": "Paragon 68L Backpack",
- "Name": "Gregory Paragon 68L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/gregory-paragon-68l-backpack-in-omega-blue~p~810np_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/gregory-paragon-68l-backpack-in-omega-blue~p~810np_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/gregory-paragon-68l-backpack-in-omega-blue~p~810np_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/gregory-paragon-68l-backpack-in-omega-blue~p~810np_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-paragon-68l-backpack~a~810np_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": { "SIZE": ["M/L"] },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Omega Blue",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/810np-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/gregory-paragon-68l-backpack-in-omega-blue~p~810np_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . The perfect lightweight companion for overnighting and minimalist trekking, Gregory's Paragon 58L backpack is well-balanced with an alloy Aerolon suspension for outstanding load support and plenty of pockets for organization.",
- "SuggestedRetailPrice": 229.99,
- "Brand": {
- "Id": "7155",
- "Url": "/api/1.0/brand/7155/",
- "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
- "LogoSrc": "https://i.stpost.com/gregory-paragon-68l-backpack~b~7155~160x100.jpg",
- "Name": "Gregory"
- },
- "ListPrice": 119.0,
- "FinalPrice": 119.0
- },
- {
- "Id": "893WU",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/893wu/",
- "WebUrl": "https://www.sierra.com/product/bounce/893wu/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/893wu/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/893wu/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Capstone 22L Backpack (For Men)",
- "Name": "Thule Capstone 22L Backpack (For Men)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-atlantic~p~893wu_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-atlantic~p~893wu_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-atlantic~p~893wu_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-atlantic~p~893wu_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-capstone-22l-backpack-for-men~a~893wu_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": { "SIZE": ["S/M", "M/L"] },
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Atlantic",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/893wu-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-atlantic~p~893wu_02~160.jpg"
- },
- {
- "ColorCode": "01",
- "ColorName": "Obsidian",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/893wu-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-obsidian~p~893wu_01~160.jpg"
- },
- {
- "ColorCode": "03",
- "ColorName": "Slickrock",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/893wu-03.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-slickrock~p~893wu_03~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Just add your sense of adventure! The Thule Capstone 22L backpack features a micro-adjustable suspension that provides the perfect fit, and it has all the trail-ready features you need for day trips and ultralight overnights.",
- "SuggestedRetailPrice": 115.0,
- "Brand": {
- "Id": "2757",
- "Url": "/api/1.0/brand/2757/",
- "ProductsUrl": "/api/1.0/products/thule~b~2757/",
- "LogoSrc": "https://i.stpost.com/thule-capstone-22l-backpack-for-men~b~2757~160x100.jpg",
- "Name": "Thule"
- },
- "ListPrice": 79.99,
- "FinalPrice": 79.99
- },
- {
- "Id": "896MU",
- "IsClearance": true,
- "IsNew": false,
- "Url": "/api/1.0/product/896mu/",
- "WebUrl": "https://www.sierra.com/product/bounce/896mu/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896mu/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/896mu/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Cerro Torre 65L Large Backpack - Internal Frame",
- "Name": "Lowe Alpine Cerro Torre 65L Large Backpack - Internal Frame",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame-in-bondi-blue~p~896mu_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame-in-bondi-blue~p~896mu_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame-in-bondi-blue~p~896mu_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame-in-bondi-blue~p~896mu_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame~a~896mu_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame~a~896mu_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Bondi Blue",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mu-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame-in-bondi-blue~p~896mu_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . If you want a bag that does it all, look no further than Lowe Alpine's Cerro Torre 65L Large backpack. With its durable TriShield® Grid construction, expandable lid, Axiom 7 back adjustment system, abundant gear storage and ergonomic design, this backpack is the perfect companion for lengthy backpacking trips.",
- "SuggestedRetailPrice": 300.0,
- "Brand": {
- "Id": "1280",
- "Url": "/api/1.0/brand/1280/",
- "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
- "LogoSrc": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame~b~1280~160x100.jpg",
- "Name": "Lowe Alpine"
- },
- "ListPrice": 149.0,
- "FinalPrice": 149.0
- },
- {
- "Id": "730FX",
- "IsClearance": true,
- "IsNew": false,
- "Url": "/api/1.0/product/730fx/",
- "WebUrl": "https://www.sierra.com/product/bounce/730fx/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/730fx/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/730fx/",
- "ReviewCount": 1,
- "AverageRating": 4.0
- },
- "NameWithoutBrand": "Instigator 32L Backpack",
- "Name": "The North Face Instigator 32L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/the-north-face-instigator-32l-backpack-in-tnf-yellow-tnf-black~p~730fx_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/the-north-face-instigator-32l-backpack-in-tnf-yellow-tnf-black~p~730fx_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/the-north-face-instigator-32l-backpack-in-tnf-yellow-tnf-black~p~730fx_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-instigator-32l-backpack-in-tnf-yellow-tnf-black~p~730fx_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/the-north-face-instigator-32l-backpack~a~730fx_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/the-north-face-instigator-32l-backpack~a~730fx_3~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/the-north-face-instigator-32l-backpack~a~730fx_4~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Tnf Yellow/Tnf Black",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/730fx-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-instigator-32l-backpack-in-tnf-yellow-tnf-black~p~730fx_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . At home in town and on the trail, The North Face's Instigator backpack lets you take it all with you safely and comfortably thanks to a massive main compartment, a padded laptop sleeve, and padded straps for optimal comfort.",
- "SuggestedRetailPrice": 109.0,
- "Brand": {
- "Id": "1440",
- "Url": "/api/1.0/brand/1440/",
- "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
- "LogoSrc": "https://i.stpost.com/the-north-face-instigator-32l-backpack~b~1440~160x100.jpg",
- "Name": "The North Face"
- },
- "ListPrice": 59.0,
- "FinalPrice": 59.0
- },
- {
- "Id": "897XT",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/897xt/",
- "WebUrl": "https://www.sierra.com/product/bounce/897xt/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/897xt/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/897xt/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Terraframe 3-Zip 50L Backpack",
- "Name": "Mystery Ranch Terraframe 3-Zip 50L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xt_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xt_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xt_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xt_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack~a~897xt_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack~a~897xt_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": { "SIZE": ["M"] },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Phantom",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/897xt-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xt_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Easily manage awkward, oversized loads on the trail with Mystery Ranch's Terraframe 3-Zip 50L backpack, a versatile hybrid bag featuring a rigid, carbon-fiber frame that flexes with your body, expandable Terraframe technology, a Y-shaped three-zip system for easy access to your full bag, and an OVERLOAD® sling that supports up to 150 pounds.",
- "SuggestedRetailPrice": 330.0,
- "Brand": {
- "Id": "37083",
- "Url": "/api/1.0/brand/37083/",
- "ProductsUrl": "/api/1.0/products/mystery-ranch~b~37083/",
- "LogoSrc": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack~b~37083~160x100.jpg",
- "Name": "Mystery Ranch"
- },
- "ListPrice": 229.99,
- "FinalPrice": 229.99
- },
- {
- "Id": "20FWN",
- "IsClearance": false,
- "IsNew": true,
- "Url": "/api/1.0/product/20fwn/",
- "WebUrl": "https://www.sierra.com/product/bounce/20fwn/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/20fwn/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/20fwn/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Banchee 65 Pack",
- "Name": "The North Face Banchee 65 Pack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/the-north-face-banchee-65-pack-in-urban-navy-bright-cobalt-blue~p~20fwn_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/the-north-face-banchee-65-pack-in-urban-navy-bright-cobalt-blue~p~20fwn_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/the-north-face-banchee-65-pack-in-urban-navy-bright-cobalt-blue~p~20fwn_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-banchee-65-pack-in-urban-navy-bright-cobalt-blue~p~20fwn_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/the-north-face-banchee-65-pack~a~20fwn_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": { "SIZE": ["S/M", "L/XL"] },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Urban Navy/Bright Cobalt Blue",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/20fwn-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-banchee-65-pack-in-urban-navy-bright-cobalt-blue~p~20fwn_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . From day hikes to overnight trips, The North Face's Banchee 65 pack will hold all your gear without weighing you down. With an ultralight, durable aluminum frame and FlashDry technology, you can comfortably carry this pack through any terrain.",
- "SuggestedRetailPrice": 220.0,
- "Brand": {
- "Id": "1440",
- "Url": "/api/1.0/brand/1440/",
- "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
- "LogoSrc": "https://i.stpost.com/the-north-face-banchee-65-pack~b~1440~160x100.jpg",
- "Name": "The North Face"
- },
- "ListPrice": 149.99,
- "FinalPrice": 149.99
- },
- {
- "Id": "897XN",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/897xn/",
- "WebUrl": "https://www.sierra.com/product/bounce/897xn/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/897xn/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/897xn/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Hover Pack 40L Backpack - Internal Frame",
- "Name": "Mystery Ranch Hover Pack 40L Backpack - Internal Frame",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame-in-deep-sea~p~897xn_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame-in-deep-sea~p~897xn_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame-in-deep-sea~p~897xn_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame-in-deep-sea~p~897xn_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame~a~897xn_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame~a~897xn_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": { "SIZE": ["M", "L"] },
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Deep Sea",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/897xn-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame-in-deep-sea~p~897xn_02~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . The Mystery Ranch Hover 40L backpack features a highly breathable Hover system that allows air flow between your back and the pack, ample padding through the back and hips, and just-right room for all your gear.",
- "SuggestedRetailPrice": 225.0,
- "Brand": {
- "Id": "37083",
- "Url": "/api/1.0/brand/37083/",
- "ProductsUrl": "/api/1.0/products/mystery-ranch~b~37083/",
- "LogoSrc": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame~b~37083~160x100.jpg",
- "Name": "Mystery Ranch"
- },
- "ListPrice": 149.99,
- "FinalPrice": 149.99
- },
- {
- "Id": "897XX",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/897xx/",
- "WebUrl": "https://www.sierra.com/product/bounce/897xx/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/897xx/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/897xx/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Terraframe 3-Zip 50L Backpack",
- "Name": "Mystery Ranch Terraframe 3-Zip 50L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xx_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xx_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xx_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xx_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack~a~897xx_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack~a~897xx_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": { "SIZE": ["S", "M", "XL"] },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Phantom",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/897xx-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xx_01~160.jpg"
- },
- {
- "ColorCode": "02",
- "ColorName": "Deep Earth",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/897xx-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-deep-earth~p~897xx_02~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Easily manage awkward, oversized loads on the trail with Mystery Ranch's Terraframe 3-Zip 50L backpack, a versatile hybrid bag featuring a rigid, carbon-fiber frame that flexes with your body, expandable Terraframe technology, a Y-shaped three-zip system for easy access to your full bag, and an OVERLOAD® sling that supports up to 150 pounds.",
- "SuggestedRetailPrice": 330.0,
- "Brand": {
- "Id": "37083",
- "Url": "/api/1.0/brand/37083/",
- "ProductsUrl": "/api/1.0/products/mystery-ranch~b~37083/",
- "LogoSrc": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack~b~37083~160x100.jpg",
- "Name": "Mystery Ranch"
- },
- "ListPrice": 229.99,
- "FinalPrice": 229.99
- },
- {
- "Id": "889KT",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/889kt/",
- "WebUrl": "https://www.sierra.com/product/bounce/889kt/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/889kt/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/889kt/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Stout 65L Backpack",
- "Name": "Gregory Stout 65L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/gregory-stout-65l-backpack-in-navy-blue~p~889kt_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/gregory-stout-65l-backpack-in-navy-blue~p~889kt_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/gregory-stout-65l-backpack-in-navy-blue~p~889kt_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/gregory-stout-65l-backpack-in-navy-blue~p~889kt_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-stout-65l-backpack~a~889kt_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-stout-65l-backpack~a~889kt_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Navy Blue",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/889kt-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/gregory-stout-65l-backpack-in-navy-blue~p~889kt_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . Built for multi-day trips and globe-trotting travel, the Gregory Stout 65L backpack has all the comfort, advanced pack technology and organizing features you expect from the backpack experts at Gregory.",
- "SuggestedRetailPrice": 169.99,
- "Brand": {
- "Id": "7155",
- "Url": "/api/1.0/brand/7155/",
- "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
- "LogoSrc": "https://i.stpost.com/gregory-stout-65l-backpack~b~7155~160x100.jpg",
- "Name": "Gregory"
- },
- "ListPrice": 129.99,
- "FinalPrice": 129.99
- },
- {
- "Id": "20FWM",
- "IsClearance": false,
- "IsNew": true,
- "Url": "/api/1.0/product/20fwm/",
- "WebUrl": "https://www.sierra.com/product/bounce/20fwm/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/20fwm/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/20fwm/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Hydra 38 Backpack",
- "Name": "The North Face Hydra 38 Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/the-north-face-hydra-38-backpack-in-urban-navy-bomber-blue~p~20fwm_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/the-north-face-hydra-38-backpack-in-urban-navy-bomber-blue~p~20fwm_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/the-north-face-hydra-38-backpack-in-urban-navy-bomber-blue~p~20fwm_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-hydra-38-backpack-in-urban-navy-bomber-blue~p~20fwm_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/the-north-face-hydra-38-backpack~a~20fwm_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/the-north-face-hydra-38-backpack~a~20fwm_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": { "SIZE": ["L/XL", "S/M"] },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Urban Navy/Bomber Blue",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/20fwm-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-hydra-38-backpack-in-urban-navy-bomber-blue~p~20fwm_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . From day hikes to overnight trips, The North Face's Hydra 38 backpack will hold all your gear without weighing you down. With an ultralight, durable aluminum frame and FlashDry® technology, you can comfortably carry this pack through any terrain.",
- "SuggestedRetailPrice": 140.0,
- "Brand": {
- "Id": "1440",
- "Url": "/api/1.0/brand/1440/",
- "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
- "LogoSrc": "https://i.stpost.com/the-north-face-hydra-38-backpack~b~1440~160x100.jpg",
- "Name": "The North Face"
- },
- "ListPrice": 99.99,
- "FinalPrice": 99.99
- },
- {
- "Id": "195UK",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/195uk/",
- "WebUrl": "https://www.sierra.com/product/bounce/195uk/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/195uk/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/195uk/",
- "ReviewCount": 20,
- "AverageRating": 4.35
- },
- "NameWithoutBrand": "Jade 38L Backpack - Internal Frame (For Women)",
- "Name": "Gregory Jade 38L Backpack - Internal Frame (For Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-dark-charcoal~p~195uk_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-dark-charcoal~p~195uk_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-dark-charcoal~p~195uk_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-dark-charcoal~p~195uk_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women~a~195uk_2~600.2.jpg"
- }
- ]
- },
- "SizesAvailable": { "SIZE": ["S", "M", "XS"] },
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Dark Charcoal",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/195uk-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-dark-charcoal~p~195uk_02~160.jpg"
- },
- {
- "ColorCode": "04",
- "ColorName": "Mountain Purple",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/195uk-04.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-mountain-purple~p~195uk_04~160.jpg"
- },
- {
- "ColorCode": "03",
- "ColorName": "Ruby Red",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/195uk-03.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-ruby-red~p~195uk_03~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . Designed especially for trail-bound women, Gregory's Jade 38 backpack features an easy-access, expandable front bucket pocket that's perfect for stowing extra layers and rain gear. Plus, the ventilating CrossFlo DTS system offers comfort for the long haul.",
- "SuggestedRetailPrice": 179.0,
- "Brand": {
- "Id": "7155",
- "Url": "/api/1.0/brand/7155/",
- "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
- "LogoSrc": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women~b~7155~160x100.jpg",
- "Name": "Gregory"
- },
- "ListPrice": 79.99,
- "FinalPrice": 79.99
- },
- {
- "Id": "848JY",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/848jy/",
- "WebUrl": "https://www.sierra.com/product/bounce/848jy/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848jy/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/848jy/",
- "ReviewCount": 1,
- "AverageRating": 5.0
- },
- "NameWithoutBrand": "Stir 28L Backpack",
- "Name": "Thule Stir 28L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/thule-stir-28l-backpack-in-dark-shadow~p~848jy_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/thule-stir-28l-backpack-in-dark-shadow~p~848jy_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/thule-stir-28l-backpack-in-dark-shadow~p~848jy_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/thule-stir-28l-backpack-in-dark-shadow~p~848jy_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-stir-28l-backpack~a~848jy_2~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-stir-28l-backpack~a~848jy_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Dark Shadow",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848jy-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-28l-backpack-in-dark-shadow~p~848jy_01~160.jpg"
- },
- {
- "ColorCode": "02",
- "ColorName": "Dark Forest",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848jy-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-28l-backpack-in-dark-forest~p~848jy_02~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Excess . With its 28-liter capacity and smart suspension, the Thule Stir backpack is nicely sized for day hikes and other short trips.",
- "SuggestedRetailPrice": 110.0,
- "Brand": {
- "Id": "2757",
- "Url": "/api/1.0/brand/2757/",
- "ProductsUrl": "/api/1.0/products/thule~b~2757/",
- "LogoSrc": "https://i.stpost.com/thule-stir-28l-backpack~b~2757~160x100.jpg",
- "Name": "Thule"
- },
- "ListPrice": 69.99,
- "FinalPrice": 69.99
- },
- {
- "Id": "889DC",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/889dc/",
- "WebUrl": "https://www.sierra.com/product/bounce/889dc/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/889dc/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/889dc/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Amber 60L Backpack (For Women)",
- "Name": "Gregory Amber 60L Backpack (For Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/gregory-amber-60l-backpack-for-women-in-pearl-blue~p~889dc_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/gregory-amber-60l-backpack-for-women-in-pearl-blue~p~889dc_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/gregory-amber-60l-backpack-for-women-in-pearl-blue~p~889dc_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/gregory-amber-60l-backpack-for-women-in-pearl-blue~p~889dc_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-amber-60l-backpack-for-women~a~889dc_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Pearl Blue",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/889dc-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/gregory-amber-60l-backpack-for-women-in-pearl-blue~p~889dc_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . The features, TrailFlex suspension and 60-liter capacity of the Gregory Amber 60L backpack combine to hit a sweet spot -- this versatile backpack can cover quick over-night trips and multi-day hikes with equal ease.",
- "SuggestedRetailPrice": 169.99,
- "Brand": {
- "Id": "7155",
- "Url": "/api/1.0/brand/7155/",
- "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
- "LogoSrc": "https://i.stpost.com/gregory-amber-60l-backpack-for-women~b~7155~160x100.jpg",
- "Name": "Gregory"
- },
- "ListPrice": 129.99,
- "FinalPrice": 129.99
- },
- {
- "Id": "877UJ",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/877uj/",
- "WebUrl": "https://www.sierra.com/product/bounce/877uj/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/877uj/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/877uj/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "ACT Lite 60+10 SL Backpack - Internal Frame (For Women)",
- "Name": "Deuter ACT Lite 60+10 SL Backpack - Internal Frame (For Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~877uj_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~877uj_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~877uj_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~877uj_01~600.jpg",
- "ExtraImages": null
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Pine/Moss",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/877uj-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~877uj_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Take an extended trip and spend your days surrounded by amazing views and the lovely sounds of nature with Deuter's ACT Lite 60+10 SL backpack, designed with multiple points of adjustment for a fine-tuned fit and a spacious main compartment with a floating lid and spindrift collar that can accommodate an extra 10 liters of gear.",
- "SuggestedRetailPrice": 180.0,
- "Brand": {
- "Id": "4061",
- "Url": "/api/1.0/brand/4061/",
- "ProductsUrl": "/api/1.0/products/deuter~b~4061/",
- "LogoSrc": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women~b~4061~160x100.jpg",
- "Name": "Deuter"
- },
- "ListPrice": 119.99,
- "FinalPrice": 119.99
- },
- {
- "Id": "665GX",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/665gx/",
- "WebUrl": "https://www.sierra.com/product/bounce/665gx/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/665gx/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/665gx/",
- "ReviewCount": 1,
- "AverageRating": 5.0
- },
- "NameWithoutBrand": "Paragon 48L Backpack - Internal Frame",
- "Name": "Gregory Paragon 48L Backpack - Internal Frame",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame-in-sunset-grey~p~665gx_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame-in-sunset-grey~p~665gx_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame-in-sunset-grey~p~665gx_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame-in-sunset-grey~p~665gx_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame~a~665gx_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": { "SIZE": ["S/M", "M/L"] },
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Sunset Grey",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/665gx-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame-in-sunset-grey~p~665gx_02~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . The perfect lightweight companion for overnighting and minimalist trekking, Gregory's Paragon 48L backpack is well-balanced with an alloy Aerolon suspension for outstanding load support and plenty of pockets for organization.",
- "SuggestedRetailPrice": 149.99,
- "Brand": {
- "Id": "7155",
- "Url": "/api/1.0/brand/7155/",
- "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
- "LogoSrc": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame~b~7155~160x100.jpg",
- "Name": "Gregory"
- },
- "ListPrice": 119.99,
- "FinalPrice": 119.99
- },
- {
- "Id": "19JDX",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/19jdx/",
- "WebUrl": "https://www.sierra.com/product/bounce/19jdx/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/19jdx/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/19jdx/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Peak 45L Backpack - Internal Frame",
- "Name": "ALPS Mountaineering Peak 45L Backpack - Internal Frame",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame-in-clay-apricot~p~19jdx_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame-in-clay-apricot~p~19jdx_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame-in-clay-apricot~p~19jdx_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame-in-clay-apricot~p~19jdx_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame~a~19jdx_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame~a~19jdx_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Clay/Apricot",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/19jdx-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame-in-clay-apricot~p~19jdx_01~160.jpg"
- },
- {
- "ColorCode": "02",
- "ColorName": "Gray",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/19jdx-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame-in-gray~p~19jdx_02~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Ready for any adventure, this ALPS Mountaineering Peak 45 backpack features plenty of space for gear and essentials with a large main compartment, hip belt pockets and lid pocket, removable waist belt and a rain cover for stormy days.",
- "SuggestedRetailPrice": 90.0,
- "Brand": {
- "Id": "1156",
- "Url": "/api/1.0/brand/1156/",
- "ProductsUrl": "/api/1.0/products/alps-mountaineering~b~1156/",
- "LogoSrc": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame~b~1156~160x100.jpg",
- "Name": "ALPS Mountaineering"
- },
- "ListPrice": 69.99,
- "FinalPrice": 69.99
- },
- {
- "Id": "893WW",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/893ww/",
- "WebUrl": "https://www.sierra.com/product/bounce/893ww/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/893ww/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/893ww/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Capstone 32L Backpack (For Men)",
- "Name": "Thule Capstone 32L Backpack (For Men)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/thule-capstone-32l-backpack-for-men-in-obsidian~p~893ww_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/thule-capstone-32l-backpack-for-men-in-obsidian~p~893ww_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/thule-capstone-32l-backpack-for-men-in-obsidian~p~893ww_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/thule-capstone-32l-backpack-for-men-in-obsidian~p~893ww_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-capstone-32l-backpack-for-men~a~893ww_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Obsidian",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/893ww-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-capstone-32l-backpack-for-men-in-obsidian~p~893ww_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Just add your sense of adventure! The Thule Capstone 32L backpack features a micro-adjustable suspension that provides the perfect fit, and it has all the trail-ready features you need for day trips and ultralight overnights.",
- "SuggestedRetailPrice": 140.0,
- "Brand": {
- "Id": "2757",
- "Url": "/api/1.0/brand/2757/",
- "ProductsUrl": "/api/1.0/products/thule~b~2757/",
- "LogoSrc": "https://i.stpost.com/thule-capstone-32l-backpack-for-men~b~2757~160x100.jpg",
- "Name": "Thule"
- },
- "ListPrice": 89.99,
- "FinalPrice": 89.99
- },
- {
- "Id": "172TX",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/172tx/",
- "WebUrl": "https://www.sierra.com/product/bounce/172tx/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/172tx/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/172tx/",
- "ReviewCount": 7,
- "AverageRating": 4.0
- },
- "NameWithoutBrand": "Lookout 80L Backpack - Internal Frame",
- "Name": "Mountainsmith Lookout 80L Backpack - Internal Frame",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame-in-pinon-green~p~172tx_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame-in-pinon-green~p~172tx_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame-in-pinon-green~p~172tx_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame-in-pinon-green~p~172tx_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame~a~172tx_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Pinon Green",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/172tx-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame-in-pinon-green~p~172tx_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . A heavy-duty hauler at a great value, Mountainsmith's Lookout 80L backpack is ready for multi-day backpacking missions. The adjustable, supportive suspension system and spacious main compartment mean you can load it up and still move comfortably on the trail.",
- "SuggestedRetailPrice": 224.95,
- "Brand": {
- "Id": "13540",
- "Url": "/api/1.0/brand/13540/",
- "ProductsUrl": "/api/1.0/products/mountainsmith~b~13540/",
- "LogoSrc": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame~b~13540~160x100.jpg",
- "Name": "Mountainsmith"
- },
- "ListPrice": 129.99,
- "FinalPrice": 129.99
- },
- {
- "Id": "848MG",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/848mg/",
- "WebUrl": "https://www.sierra.com/product/bounce/848mg/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848mg/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/848mg/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Versant 60L Backpack - Internal Frame (For Women)",
- "Name": "Thule Versant 60L Backpack - Internal Frame (For Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mg_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mg_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mg_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mg_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women~a~848mg_2~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women~a~848mg_3~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women~a~848mg_4~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women~a~848mg_5~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Mazerine Blue",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848mg-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mg_02~160.jpg"
- },
- {
- "ColorCode": "01",
- "ColorName": "Deep Teal",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848mg-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women-in-deep-teal~p~848mg_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . Thule's Versant 60L backpack is spacious and supportive enough for multi-day backcountry trips and backpacker travel. The female-specific design includes waistbelt and torso adjustability for customizable comfort, access to the spacious main compartment from the top and front, and a three-quarter rain cover with a waterproof bottom liner to protect your gear from the elements.",
- "SuggestedRetailPrice": 205.0,
- "Brand": {
- "Id": "2757",
- "Url": "/api/1.0/brand/2757/",
- "ProductsUrl": "/api/1.0/products/thule~b~2757/",
- "LogoSrc": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women~b~2757~160x100.jpg",
- "Name": "Thule"
- },
- "ListPrice": 129.99,
- "FinalPrice": 129.99
- },
- {
- "Id": "486KV",
- "IsClearance": true,
- "IsNew": false,
- "Url": "/api/1.0/product/486kv/",
- "WebUrl": "https://www.sierra.com/product/bounce/486kv/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/486kv/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/486kv/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Approach 25L Backpack",
- "Name": "Mountainsmith Approach 25L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/mountainsmith-approach-25l-backpack-in-dark-camo~p~486kv_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/mountainsmith-approach-25l-backpack-in-dark-camo~p~486kv_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/mountainsmith-approach-25l-backpack-in-dark-camo~p~486kv_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/mountainsmith-approach-25l-backpack-in-dark-camo~p~486kv_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/mountainsmith-approach-25l-backpack~a~486kv_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/mountainsmith-approach-25l-backpack~a~486kv_3~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/mountainsmith-approach-25l-backpack~a~486kv_4~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Dark Camo",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/486kv-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/mountainsmith-approach-25l-backpack-in-dark-camo~p~486kv_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . The perfect go-to for commutes, jaunts across campus and quick ascents to the summit, Mountainsmith's Approach 25L backpack makes a handy dual-panel loader bag for both weekdays and adventure-filled weekends.",
- "SuggestedRetailPrice": 89.95,
- "Brand": {
- "Id": "13540",
- "Url": "/api/1.0/brand/13540/",
- "ProductsUrl": "/api/1.0/products/mountainsmith~b~13540/",
- "LogoSrc": "https://i.stpost.com/mountainsmith-approach-25l-backpack~b~13540~160x100.jpg",
- "Name": "Mountainsmith"
- },
- "ListPrice": 43.0,
- "FinalPrice": 43.0
- },
- {
- "Id": "848HW",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/848hw/",
- "WebUrl": "https://www.sierra.com/product/bounce/848hw/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848hw/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/848hw/",
- "ReviewCount": 1,
- "AverageRating": 2.0
- },
- "NameWithoutBrand": "Stir 18L Backpack",
- "Name": "Thule Stir 18L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/thule-stir-18l-backpack-in-dark-shadow~p~848hw_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/thule-stir-18l-backpack-in-dark-shadow~p~848hw_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/thule-stir-18l-backpack-in-dark-shadow~p~848hw_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/thule-stir-18l-backpack-in-dark-shadow~p~848hw_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-stir-18l-backpack~a~848hw_2~600.3.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-stir-18l-backpack~a~848hw_3~600.3.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-stir-18l-backpack~a~848hw_4~600.3.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-stir-18l-backpack~a~848hw_5~600.3.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-stir-18l-backpack~a~848hw_6~600.2.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Dark Shadow",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848hw-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-18l-backpack-in-dark-shadow~p~848hw_01~160.jpg"
- },
- {
- "ColorCode": "03",
- "ColorName": "Fjord",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848hw-03.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-18l-backpack-in-fjord~p~848hw_03~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . Thule's Stir 18L backpack comfortably carries all your things over the mountains or around town in light, durable fabric and an ergonomic design. The padded, mesh-lined shoulder straps feature cutouts for added breathability, plus quick-access loops, a stretchy zip pocket and a removable sternum clip.",
- "SuggestedRetailPrice": 80.0,
- "Brand": {
- "Id": "2757",
- "Url": "/api/1.0/brand/2757/",
- "ProductsUrl": "/api/1.0/products/thule~b~2757/",
- "LogoSrc": "https://i.stpost.com/thule-stir-18l-backpack~b~2757~160x100.jpg",
- "Name": "Thule"
- },
- "ListPrice": 49.99,
- "FinalPrice": 49.99
- },
- {
- "Id": "897XU",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/897xu/",
- "WebUrl": "https://www.sierra.com/product/bounce/897xu/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/897xu/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/897xu/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Hover 50L Backpack - Internal Frame",
- "Name": "Mystery Ranch Hover 50L Backpack - Internal Frame",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame-in-adobe~p~897xu_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame-in-adobe~p~897xu_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame-in-adobe~p~897xu_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame-in-adobe~p~897xu_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame~a~897xu_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame~a~897xu_3~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame~a~897xu_4~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": { "SIZE": ["M", "L", "S", "XL"] },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Adobe",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/897xu-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame-in-adobe~p~897xu_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Mystery Ranch's Hover 50L backpack is a spacious and comfortable pack for long hikes and short backpacking trips, offering a breathable Hover system that allows air flow between your back and the pack, ample padding through the back and hips, and plenty of room for all your gear.",
- "SuggestedRetailPrice": 240.0,
- "Brand": {
- "Id": "37083",
- "Url": "/api/1.0/brand/37083/",
- "ProductsUrl": "/api/1.0/products/mystery-ranch~b~37083/",
- "LogoSrc": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame~b~37083~160x100.jpg",
- "Name": "Mystery Ranch"
- },
- "ListPrice": 179.99,
- "FinalPrice": 179.99
- },
- {
- "Id": "8439K",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/8439k/",
- "WebUrl": "https://www.sierra.com/product/bounce/8439k/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/8439k/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/8439k/",
- "ReviewCount": 8,
- "AverageRating": 4.75
- },
- "NameWithoutBrand": "ACT Lite 60+10 SL Backpack - Internal Frame (For Women)",
- "Name": "Deuter ACT Lite 60+10 SL Backpack - Internal Frame (For Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~8439k_04~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~8439k_04~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~8439k_04~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~8439k_04~600.jpg",
- "ExtraImages": null
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "04",
- "ColorName": "Pine/Moss",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/8439k-04.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~8439k_04~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . The customizable fit and multiple storage compartments in the Deuter ACT Lite 60+ 10 SL backpack make it an outstanding performer on weekend backpacking trips and for adventure travel.",
- "SuggestedRetailPrice": 169.99,
- "Brand": {
- "Id": "4061",
- "Url": "/api/1.0/brand/4061/",
- "ProductsUrl": "/api/1.0/products/deuter~b~4061/",
- "LogoSrc": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women~b~4061~160x100.jpg",
- "Name": "Deuter"
- },
- "ListPrice": 119.99,
- "FinalPrice": 119.99
- },
- {
- "Id": "15FMM",
- "IsClearance": false,
- "IsNew": true,
- "Url": "/api/1.0/product/15fmm/",
- "WebUrl": "https://www.sierra.com/product/bounce/15fmm/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/15fmm/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/15fmm/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Happy Camper Mission 25 L Backpack",
- "Name": "DaKine Happy Camper Mission 25 L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack-in-windells-speed-team~p~15fmm_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack-in-windells-speed-team~p~15fmm_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack-in-windells-speed-team~p~15fmm_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack-in-windells-speed-team~p~15fmm_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack~a~15fmm_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Windells Speed Team",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/15fmm-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack-in-windells-speed-team~p~15fmm_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . From camping trips to mountain fun, this DaKine Happy Camper Mission backpack will be your happy companion through every season of the year. It includes plenty of pockets for essentials, a laptop sleeve, vertical snowboard carry straps and a stowable lunch box that can also be worn as a hip pack.",
- "SuggestedRetailPrice": 115.0,
- "Brand": {
- "Id": "3895",
- "Url": "/api/1.0/brand/3895/",
- "ProductsUrl": "/api/1.0/products/dakine~b~3895/",
- "LogoSrc": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack~b~3895~160x100.jpg",
- "Name": "DaKine"
- },
- "ListPrice": 39.99,
- "FinalPrice": 39.99
- },
- {
- "Id": "926WF",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/926wf/",
- "WebUrl": "https://www.sierra.com/product/bounce/926wf/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/926wf/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/926wf/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Peregrine 1800 Tactical Backpack",
- "Name": "Kelty Peregrine 1800 Tactical Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack-in-coyote-brown~p~926wf_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack-in-coyote-brown~p~926wf_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack-in-coyote-brown~p~926wf_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack-in-coyote-brown~p~926wf_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack~a~926wf_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack~a~926wf_3~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack~a~926wf_4~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Coyote Brown",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/926wf-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack-in-coyote-brown~p~926wf_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . You'll be ready for adventures on the trail or in the city with Kelty's Peregrine 1800 tactical backpack, featuring three zip compartments with plenty of storage space, an inner sleeve that can accommodate a hydration reservoir or a laptop, and shoulder and back cushioning for all-day comfort.",
- "SuggestedRetailPrice": 90.0,
- "Brand": {
- "Id": "1105",
- "Url": "/api/1.0/brand/1105/",
- "ProductsUrl": "/api/1.0/products/kelty~b~1105/",
- "LogoSrc": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack~b~1105~160x100.jpg",
- "Name": "Kelty"
- },
- "ListPrice": 59.99,
- "FinalPrice": 59.99
- },
- {
- "Id": "445FJ",
- "IsClearance": true,
- "IsNew": false,
- "Url": "/api/1.0/product/445fj/",
- "WebUrl": "https://www.sierra.com/product/bounce/445fj/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/445fj/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/445fj/",
- "ReviewCount": 1,
- "AverageRating": 5.0
- },
- "NameWithoutBrand": "Siro 50L Backpack - Internal Frame",
- "Name": "Kelty Siro 50L Backpack - Internal Frame",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame-in-woodbine~p~445fj_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame-in-woodbine~p~445fj_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame-in-woodbine~p~445fj_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame-in-woodbine~p~445fj_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame~a~445fj_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": { "SIZE": ["S/M", "M/L"] },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Woodbine",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/445fj-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame-in-woodbine~p~445fj_01~160.jpg"
- },
- {
- "ColorCode": "02",
- "ColorName": "Black",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/445fj-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame-in-black~p~445fj_02~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Overstock . Lightweight and streamlined, Kelty's 45L Siro backpack offers a FeatherFIT suspension system with a suspended AirMesh back panel and integrated lumbar support to keep you in comfort on the long haul.",
- "SuggestedRetailPrice": 199.95,
- "Brand": {
- "Id": "1105",
- "Url": "/api/1.0/brand/1105/",
- "ProductsUrl": "/api/1.0/products/kelty~b~1105/",
- "LogoSrc": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame~b~1105~160x100.jpg",
- "Name": "Kelty"
- },
- "ListPrice": 79.0,
- "FinalPrice": 79.0
- },
- {
- "Id": "896MM",
- "IsClearance": true,
- "IsNew": false,
- "Url": "/api/1.0/product/896mm/",
- "WebUrl": "https://www.sierra.com/product/bounce/896mm/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896mm/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/896mm/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Alpine Ascent 25L Backpack",
- "Name": "Lowe Alpine Alpine Ascent 25L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack-in-onyx~p~896mm_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack-in-onyx~p~896mm_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack-in-onyx~p~896mm_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack-in-onyx~p~896mm_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack~a~896mm_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack~a~896mm_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Onyx",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mm-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack-in-onyx~p~896mm_02~160.jpg"
- },
- {
- "ColorCode": "01",
- "ColorName": "Fire",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mm-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack-in-fire~p~896mm_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Whatever season you climb in, Lowe Alpine's Alpine Ascent 25L backpack has you covered with plenty of room for your gear, and features gear loops, rope holder and a Headlocker ice axe attachment system.",
- "SuggestedRetailPrice": 130.0,
- "Brand": {
- "Id": "1280",
- "Url": "/api/1.0/brand/1280/",
- "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
- "LogoSrc": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack~b~1280~160x100.jpg",
- "Name": "Lowe Alpine"
- },
- "ListPrice": 59.0,
- "FinalPrice": 59.0
- },
- {
- "Id": "20FWP",
- "IsClearance": false,
- "IsNew": true,
- "Url": "/api/1.0/product/20fwp/",
- "WebUrl": "https://www.sierra.com/product/bounce/20fwp/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/20fwp/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/20fwp/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Fovero 85 Pack",
- "Name": "The North Face Fovero 85 Pack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/the-north-face-fovero-85-pack-in-tnf-black-high-rise-grey~p~20fwp_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/the-north-face-fovero-85-pack-in-tnf-black-high-rise-grey~p~20fwp_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/the-north-face-fovero-85-pack-in-tnf-black-high-rise-grey~p~20fwp_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-fovero-85-pack-in-tnf-black-high-rise-grey~p~20fwp_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/the-north-face-fovero-85-pack~a~20fwp_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/the-north-face-fovero-85-pack~a~20fwp_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": { "SIZE": ["S/M"] },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Tnf Black/High Rise Grey",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/20fwp-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-fovero-85-pack-in-tnf-black-high-rise-grey~p~20fwp_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . The North Face's Fovero 85 pack will be your pack of choice for your next backcountry adventure with its OPTIFIT suspension and durable ripstop nylon construction.",
- "SuggestedRetailPrice": 250.0,
- "Brand": {
- "Id": "1440",
- "Url": "/api/1.0/brand/1440/",
- "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
- "LogoSrc": "https://i.stpost.com/the-north-face-fovero-85-pack~b~1440~160x100.jpg",
- "Name": "The North Face"
- },
- "ListPrice": 179.99,
- "FinalPrice": 179.99
- },
- {
- "Id": "16DXP",
- "IsClearance": false,
- "IsNew": true,
- "Url": "/api/1.0/product/16dxp/",
- "WebUrl": "https://www.sierra.com/product/bounce/16dxp/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16dxp/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/16dxp/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Speedfit 28 L Backpack",
- "Name": "Dynafit Speedfit 28 L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/dynafit-speedfit-28-l-backpack-in-black-neo-yellow~p~16dxp_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/dynafit-speedfit-28-l-backpack-in-black-neo-yellow~p~16dxp_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/dynafit-speedfit-28-l-backpack-in-black-neo-yellow~p~16dxp_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/dynafit-speedfit-28-l-backpack-in-black-neo-yellow~p~16dxp_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/dynafit-speedfit-28-l-backpack~a~16dxp_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/dynafit-speedfit-28-l-backpack~a~16dxp_3~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/dynafit-speedfit-28-l-backpack~a~16dxp_4~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Black/Neo Yellow",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16dxp-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/dynafit-speedfit-28-l-backpack-in-black-neo-yellow~p~16dxp_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Be seen in low-light conditions on the mountain with Dynafit's Speedfit backpack, featuring a bright LED light band at the bottom of the pack.",
- "SuggestedRetailPrice": 120.0,
- "Brand": {
- "Id": "1364",
- "Url": "/api/1.0/brand/1364/",
- "ProductsUrl": "/api/1.0/products/dynafit~b~1364/",
- "LogoSrc": "https://i.stpost.com/dynafit-speedfit-28-l-backpack~b~1364~160x100.jpg",
- "Name": "Dynafit"
- },
- "ListPrice": 69.99,
- "FinalPrice": 69.99
- },
- {
- "Id": "848HV",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/848hv/",
- "WebUrl": "https://www.sierra.com/product/bounce/848hv/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848hv/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/848hv/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Stir 15L Backpack",
- "Name": "Thule Stir 15L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/thule-stir-15l-backpack-in-fjord~p~848hv_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/thule-stir-15l-backpack-in-fjord~p~848hv_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/thule-stir-15l-backpack-in-fjord~p~848hv_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/thule-stir-15l-backpack-in-fjord~p~848hv_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-stir-15l-backpack~a~848hv_2~600.3.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-stir-15l-backpack~a~848hv_3~600.3.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-stir-15l-backpack~a~848hv_4~600.3.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-stir-15l-backpack~a~848hv_5~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-stir-15l-backpack~a~848hv_6~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-stir-15l-backpack~a~848hv_7~600.2.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Fjord",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848hv-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-15l-backpack-in-fjord~p~848hv_02~160.jpg"
- },
- {
- "ColorCode": "03",
- "ColorName": "Dark Forest",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848hv-03.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-15l-backpack-in-dark-forest~p~848hv_03~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Excess . With its 15-liter capacity and smart suspension, the Thule Stir 15L backpack is nicely sized for day hikes and other short trips.",
- "SuggestedRetailPrice": 50.0,
- "Brand": {
- "Id": "2757",
- "Url": "/api/1.0/brand/2757/",
- "ProductsUrl": "/api/1.0/products/thule~b~2757/",
- "LogoSrc": "https://i.stpost.com/thule-stir-15l-backpack~b~2757~160x100.jpg",
- "Name": "Thule"
- },
- "ListPrice": 34.99,
- "FinalPrice": 34.99
- },
- {
- "Id": "18DUD",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/18dud/",
- "WebUrl": "https://www.sierra.com/product/bounce/18dud/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/18dud/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/18dud/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Aircontact 45L + 10 Backpack (For Men and Women)",
- "Name": "Deuter Aircontact 45L + 10 Backpack (For Men and Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women-in-cranberry-graphite~p~18dud_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women-in-cranberry-graphite~p~18dud_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women-in-cranberry-graphite~p~18dud_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women-in-cranberry-graphite~p~18dud_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women~a~18dud_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Cranberry/Graphite",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/18dud-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women-in-cranberry-graphite~p~18dud_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Deuter's Aircontact 48L+10 backpack comfortably carries your supplies for a weekend full of trail exploring. Its Aircontact back-system paired with S-shaped shoulder straps allow you to fine-tune your fit for optimal load distribution and breathable comfort even when fully loaded.",
- "SuggestedRetailPrice": 220.0,
- "Brand": {
- "Id": "4061",
- "Url": "/api/1.0/brand/4061/",
- "ProductsUrl": "/api/1.0/products/deuter~b~4061/",
- "LogoSrc": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women~b~4061~160x100.jpg",
- "Name": "Deuter"
- },
- "ListPrice": 129.99,
- "FinalPrice": 129.99
- },
- {
- "Id": "660MY",
- "IsClearance": true,
- "IsNew": false,
- "Url": "/api/1.0/product/660my/",
- "WebUrl": "https://www.sierra.com/product/bounce/660my/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/660my/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/660my/",
- "ReviewCount": 3,
- "AverageRating": 4.33
- },
- "NameWithoutBrand": "Competition 65+10L Backpack - 75L",
- "Name": "Deuter Competition 65+10L Backpack - 75L",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/deuter-competition-65-plus-10l-backpack-75l-in-pine-granite~p~660my_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/deuter-competition-65-plus-10l-backpack-75l-in-pine-granite~p~660my_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/deuter-competition-65-plus-10l-backpack-75l-in-pine-granite~p~660my_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/deuter-competition-65-plus-10l-backpack-75l-in-pine-granite~p~660my_01~600.jpg",
- "ExtraImages": null
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Pine/Granite",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/660my-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/deuter-competition-65-plus-10l-backpack-75l-in-pine-granite~p~660my_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Deep wilderness treks require optimal comfort and space, so put on the Deuter Competition backpack and enjoy adjustable back length that allows for perfect shoulder and hip placement.",
- "SuggestedRetailPrice": 179.99,
- "Brand": {
- "Id": "4061",
- "Url": "/api/1.0/brand/4061/",
- "ProductsUrl": "/api/1.0/products/deuter~b~4061/",
- "LogoSrc": "https://i.stpost.com/deuter-competition-65-plus-10l-backpack-75l~b~4061~160x100.jpg",
- "Name": "Deuter"
- },
- "ListPrice": 99.0,
- "FinalPrice": 99.0
- },
- {
- "Id": "848HX",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/848hx/",
- "WebUrl": "https://www.sierra.com/product/bounce/848hx/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848hx/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/848hx/",
- "ReviewCount": 1,
- "AverageRating": 4.0
- },
- "NameWithoutBrand": "Stir 35L Backpack (For Men)",
- "Name": "Thule Stir 35L Backpack (For Men)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/thule-stir-35l-backpack-for-men-in-dark-forest~p~848hx_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/thule-stir-35l-backpack-for-men-in-dark-forest~p~848hx_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/thule-stir-35l-backpack-for-men-in-dark-forest~p~848hx_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/thule-stir-35l-backpack-for-men-in-dark-forest~p~848hx_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-stir-35l-backpack-for-men~a~848hx_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-stir-35l-backpack-for-men~a~848hx_3~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-stir-35l-backpack-for-men~a~848hx_4~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Dark Forest",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848hx-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-35l-backpack-for-men-in-dark-forest~p~848hx_02~160.jpg"
- },
- {
- "ColorCode": "01",
- "ColorName": "Dark Shadow",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848hx-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-35l-backpack-for-men-in-dark-shadow~p~848hx_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Excess . The Thule Stir 35L backpack is a superb midsize option for overnight backpacking, climbing and other outdoor sports that require larger amounts of gear than daypacks can handle.",
- "SuggestedRetailPrice": 120.0,
- "Brand": {
- "Id": "2757",
- "Url": "/api/1.0/brand/2757/",
- "ProductsUrl": "/api/1.0/products/thule~b~2757/",
- "LogoSrc": "https://i.stpost.com/thule-stir-35l-backpack-for-men~b~2757~160x100.jpg",
- "Name": "Thule"
- },
- "ListPrice": 69.99,
- "FinalPrice": 69.99
- },
- {
- "Id": "848MH",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/848mh/",
- "WebUrl": "https://www.sierra.com/product/bounce/848mh/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848mh/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/848mh/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Versant 70L Backpack - Internal Frame (For Women)",
- "Name": "Thule Versant 70L Backpack - Internal Frame (For Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mh_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mh_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mh_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mh_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women~a~848mh_2~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women~a~848mh_3~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women~a~848mh_4~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women~a~848mh_5~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Mazerine Blue",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848mh-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mh_02~160.jpg"
- },
- {
- "ColorCode": "01",
- "ColorName": "Deep Teal",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848mh-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women-in-deep-teal~p~848mh_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Excess . Thule's Versant 70L backpack is spacious and supportive enough for multi-day backcountry trips and backpacker travel. The female-specific design includes waistbelt and torso adjustability for customizable comfort, access to the spacious main compartment from the top and front, and a three-quarter rain cover with a waterproof bottom liner to protect your gear from the elements.",
- "SuggestedRetailPrice": 215.0,
- "Brand": {
- "Id": "2757",
- "Url": "/api/1.0/brand/2757/",
- "ProductsUrl": "/api/1.0/products/thule~b~2757/",
- "LogoSrc": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women~b~2757~160x100.jpg",
- "Name": "Thule"
- },
- "ListPrice": 129.99,
- "FinalPrice": 129.99
- },
- {
- "Id": "896MW",
- "IsClearance": true,
- "IsNew": false,
- "Url": "/api/1.0/product/896mw/",
- "WebUrl": "https://www.sierra.com/product/bounce/896mw/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896mw/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/896mw/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Kulu 65L Backpack",
- "Name": "Lowe Alpine Kulu 65L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mw_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mw_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mw_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mw_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~a~896mw_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~a~896mw_3~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~a~896mw_4~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Magnetite",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mw-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mw_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . When your next adventure is a plane ride away, this Lowe Alpine Kulu 65L backpack is the perfect travel companion. With its durable construction, expandable lid, adjustable AirMesh back, abundant gear storage and versatile Travel FlipBelt technology, this backpack is designed to ease the stress of travel to remote locations.",
- "SuggestedRetailPrice": 225.0,
- "Brand": {
- "Id": "1280",
- "Url": "/api/1.0/brand/1280/",
- "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
- "LogoSrc": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~b~1280~160x100.jpg",
- "Name": "Lowe Alpine"
- },
- "ListPrice": 79.0,
- "FinalPrice": 79.0
- },
- {
- "Id": "18DUA",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/18dua/",
- "WebUrl": "https://www.sierra.com/product/bounce/18dua/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/18dua/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/18dua/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "AC Lite 18 Backpack - Internal Frame (For Men and Women)",
- "Name": "Deuter AC Lite 18 Backpack - Internal Frame (For Men and Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dua_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dua_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dua_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dua_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women~a~18dua_2~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women~a~18dua_3~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women~a~18dua_4~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women~a~18dua_5~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Cranberry",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/18dua-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dua_02~160.jpg"
- },
- {
- "ColorCode": "01",
- "ColorName": "Steel",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/18dua-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women-in-steel~p~18dua_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Enjoy a day on the trail with Deuter's AC Lite 18 backpack, made from durable, water-resistant ripstop fabric with a breathable Aircomfort mesh back system, ergonomic design and plenty of storage space for your gear and other essentials.",
- "SuggestedRetailPrice": 80.0,
- "Brand": {
- "Id": "4061",
- "Url": "/api/1.0/brand/4061/",
- "ProductsUrl": "/api/1.0/products/deuter~b~4061/",
- "LogoSrc": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women~b~4061~160x100.jpg",
- "Name": "Deuter"
- },
- "ListPrice": 49.99,
- "FinalPrice": 49.99
- },
- {
- "Id": "926WH",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/926wh/",
- "WebUrl": "https://www.sierra.com/product/bounce/926wh/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/926wh/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/926wh/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Map 3500 Tactical 38L Backpack",
- "Name": "Kelty Map 3500 Tactical 38L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack-in-black~p~926wh_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack-in-black~p~926wh_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack-in-black~p~926wh_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack-in-black~p~926wh_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack~a~926wh_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack~a~926wh_3~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack~a~926wh_4~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Black",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/926wh-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack-in-black~p~926wh_02~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . This Kelty Map 3500 Tactical backpack hauls your essentials around the block or around the world comfortably and securely.",
- "SuggestedRetailPrice": 120.0,
- "Brand": {
- "Id": "1105",
- "Url": "/api/1.0/brand/1105/",
- "ProductsUrl": "/api/1.0/products/kelty~b~1105/",
- "LogoSrc": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack~b~1105~160x100.jpg",
- "Name": "Kelty"
- },
- "ListPrice": 79.99,
- "FinalPrice": 79.99
- },
- {
- "Id": "19JDW",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/19jdw/",
- "WebUrl": "https://www.sierra.com/product/bounce/19jdw/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/19jdw/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/19jdw/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Hydro Trail 10L Hydration Backpack - 3L Reservoir",
- "Name": "ALPS Mountaineering Hydro Trail 10L Hydration Backpack - 3L Reservoir",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~19jdw_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~19jdw_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~19jdw_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~19jdw_01~600.jpg",
- "ExtraImages": null
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Gray/Citrus",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/19jdw-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~19jdw_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . Whether you're hiking, mountain biking or climbing, ALPS Mountaineering's Hydra Trail hydration pack makes it easy to stay hydrated while you're on the trail. With separate compartments and a ventilating 3D mesh suspension, it comfortably carries everything you need.",
- "SuggestedRetailPrice": 80.0,
- "Brand": {
- "Id": "1156",
- "Url": "/api/1.0/brand/1156/",
- "ProductsUrl": "/api/1.0/products/alps-mountaineering~b~1156/",
- "LogoSrc": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir~b~1156~160x100.jpg",
- "Name": "ALPS Mountaineering"
- },
- "ListPrice": 49.99,
- "FinalPrice": 49.99
- },
- {
- "Id": "896MV",
- "IsClearance": true,
- "IsNew": false,
- "Url": "/api/1.0/product/896mv/",
- "WebUrl": "https://www.sierra.com/product/bounce/896mv/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896mv/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/896mv/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Kulu 65L Backpack",
- "Name": "Lowe Alpine Kulu 65L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mv_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mv_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mv_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mv_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~a~896mv_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~a~896mv_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Magnetite",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mv-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mv_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . When your next adventure is a plane ride away, this Lowe Alpine Kulu 65L backpack is the perfect travel companion. With its durable construction, expandable lid, adjustable AirMesh back, abundant gear storage and versatile Travel FlipBelt technology, this backpack is designed to ease the stress of travel to remote locations.",
- "SuggestedRetailPrice": 225.0,
- "Brand": {
- "Id": "1280",
- "Url": "/api/1.0/brand/1280/",
- "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
- "LogoSrc": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~b~1280~160x100.jpg",
- "Name": "Lowe Alpine"
- },
- "ListPrice": 79.0,
- "FinalPrice": 79.0
- },
- {
- "Id": "895DX",
- "IsClearance": true,
- "IsNew": false,
- "Url": "/api/1.0/product/895dx/",
- "WebUrl": "https://www.sierra.com/product/bounce/895dx/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/895dx/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/895dx/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "AirZone Velo 25L Backpack",
- "Name": "Lowe Alpine AirZone Velo 25L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/lowe-alpine-airzone-velo-25l-backpack-in-marine~p~895dx_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/lowe-alpine-airzone-velo-25l-backpack-in-marine~p~895dx_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/lowe-alpine-airzone-velo-25l-backpack-in-marine~p~895dx_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-airzone-velo-25l-backpack-in-marine~p~895dx_01~600.jpg",
- "ExtraImages": null
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Marine",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/895dx-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-airzone-velo-25l-backpack-in-marine~p~895dx_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . A great choice for days in the saddle, Lowe Alpine's AirZone Velo 25L backpack is made with super-durable TrailShield fabric, AirZone mesh for maximized airflow and a front pocket with a bike tool organizer for quick access if something should happen.",
- "SuggestedRetailPrice": 140.0,
- "Brand": {
- "Id": "1280",
- "Url": "/api/1.0/brand/1280/",
- "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
- "LogoSrc": "https://i.stpost.com/lowe-alpine-airzone-velo-25l-backpack~b~1280~160x100.jpg",
- "Name": "Lowe Alpine"
- },
- "ListPrice": 49.0,
- "FinalPrice": 49.0
- },
- {
- "Id": "16DXR",
- "IsClearance": false,
- "IsNew": true,
- "Url": "/api/1.0/product/16dxr/",
- "WebUrl": "https://www.sierra.com/product/bounce/16dxr/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16dxr/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/16dxr/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Speed 28 L Backpack",
- "Name": "Dynafit Speed 28 L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/dynafit-speed-28-l-backpack-in-carbon-black~p~16dxr_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/dynafit-speed-28-l-backpack-in-carbon-black~p~16dxr_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/dynafit-speed-28-l-backpack-in-carbon-black~p~16dxr_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/dynafit-speed-28-l-backpack-in-carbon-black~p~16dxr_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/dynafit-speed-28-l-backpack~a~16dxr_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/dynafit-speed-28-l-backpack~a~16dxr_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Carbon/Black",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16dxr-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/dynafit-speed-28-l-backpack-in-carbon-black~p~16dxr_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Dynafit's Speed backpack features a roomy compartment with a full-wrap zipper, an anatomical cut, breathable straps and an air mesh back panel system that makes it ideal for backcountry tours.",
- "SuggestedRetailPrice": 110.0,
- "Brand": {
- "Id": "1364",
- "Url": "/api/1.0/brand/1364/",
- "ProductsUrl": "/api/1.0/products/dynafit~b~1364/",
- "LogoSrc": "https://i.stpost.com/dynafit-speed-28-l-backpack~b~1364~160x100.jpg",
- "Name": "Dynafit"
- },
- "ListPrice": 59.99,
- "FinalPrice": 59.99
- },
- {
- "Id": "419FF",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/419ff/",
- "WebUrl": "https://www.sierra.com/product/bounce/419ff/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/419ff/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/419ff/",
- "ReviewCount": 5,
- "AverageRating": 3.8
- },
- "NameWithoutBrand": "Red Wall 8L Hydration Backpack - 70 oz.",
- "Name": "Stansport Red Wall 8L Hydration Backpack - 70 oz.",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz-in-black-gray~p~419ff_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz-in-black-gray~p~419ff_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz-in-black-gray~p~419ff_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz-in-black-gray~p~419ff_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz~a~419ff_2~600.2.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Black/Gray",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/419ff-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz-in-black-gray~p~419ff_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . A great little hydration pack for day hikes and biking, the Stansport Red Wall 8L hydration backpack has 8 liters of total capacity, which includes a 2-liter hydration reservoir with a no-leak bite valve.",
- "SuggestedRetailPrice": 29.99,
- "Brand": {
- "Id": "33483",
- "Url": "/api/1.0/brand/33483/",
- "ProductsUrl": "/api/1.0/products/stansport~b~33483/",
- "LogoSrc": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz~b~33483~160x100.jpg",
- "Name": "Stansport"
- },
- "ListPrice": 19.99,
- "FinalPrice": 19.99
- },
- {
- "Id": "936GT",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/936gt/",
- "WebUrl": "https://www.sierra.com/product/bounce/936gt/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/936gt/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/936gt/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Hydro Trail 10L Hydration Backpack - 3L Reservoir",
- "Name": "ALPS Mountaineering Hydro Trail 10L Hydration Backpack - 3L Reservoir",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~936gt_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~936gt_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~936gt_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~936gt_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir~a~936gt_2~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir~a~936gt_3~600.2.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Gray/Citrus",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/936gt-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~936gt_02~160.jpg"
- },
- {
- "ColorCode": "01",
- "ColorName": "Gray/Blue",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/936gt-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-blue~p~936gt_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . Whether you're hiking, mountain biking or climbing, ALPS Mountaineering's Hydra Trail hydration pack makes it easy to stay hydrated while you're on the trail. With separate compartments and a ventilating 3D mesh suspension, it comfortably carries everything you need.",
- "SuggestedRetailPrice": 80.0,
- "Brand": {
- "Id": "1156",
- "Url": "/api/1.0/brand/1156/",
- "ProductsUrl": "/api/1.0/products/alps-mountaineering~b~1156/",
- "LogoSrc": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir~b~1156~160x100.jpg",
- "Name": "ALPS Mountaineering"
- },
- "ListPrice": 49.99,
- "FinalPrice": 49.99
- },
- {
- "Id": "895FA",
- "IsClearance": true,
- "IsNew": false,
- "Url": "/api/1.0/product/895fa/",
- "WebUrl": "https://www.sierra.com/product/bounce/895fa/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/895fa/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/895fa/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "AirZone Velo 30L Backpack",
- "Name": "Lowe Alpine AirZone Velo 30L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack-in-black~p~895fa_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack-in-black~p~895fa_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack-in-black~p~895fa_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack-in-black~p~895fa_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack~a~895fa_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Black",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/895fa-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack-in-black~p~895fa_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . A great choice for days in the saddle or the trail, Lowe Alpine's AirZone Velo 30L backpack is made with super-durable TriShield Dura fabric, AirZone mesh for maximized airflow and a front pocket with a bike tool organizer for quick access if something should happen.",
- "SuggestedRetailPrice": 140.0,
- "Brand": {
- "Id": "1280",
- "Url": "/api/1.0/brand/1280/",
- "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
- "LogoSrc": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack~b~1280~160x100.jpg",
- "Name": "Lowe Alpine"
- },
- "ListPrice": 49.0,
- "FinalPrice": 49.0
- },
- {
- "Id": "20DPX",
- "IsClearance": false,
- "IsNew": true,
- "Url": "/api/1.0/product/20dpx/",
- "WebUrl": "https://www.sierra.com/product/bounce/20dpx/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/20dpx/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/20dpx/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Hydra 38 Backpack (For Women)",
- "Name": "The North Face Hydra 38 Backpack (For Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women-in-new-taupe-green-four-leaf-clover~p~20dpx_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women-in-new-taupe-green-four-leaf-clover~p~20dpx_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women-in-new-taupe-green-four-leaf-clover~p~20dpx_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women-in-new-taupe-green-four-leaf-clover~p~20dpx_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women~a~20dpx_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women~a~20dpx_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": { "SIZE": ["XS/S"] },
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "New Taupe Green/Four Leaf Clover",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/20dpx-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women-in-new-taupe-green-four-leaf-clover~p~20dpx_02~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . From day hikes to overnight trips, The North Face's Hydra 38 backpack will hold all your gear without weighing you down. With an ultralight, durable aluminum frame and FlashDry® technology, you can comfortably carry this pack through any terrain.",
- "SuggestedRetailPrice": 150.0,
- "Brand": {
- "Id": "1440",
- "Url": "/api/1.0/brand/1440/",
- "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
- "LogoSrc": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women~b~1440~160x100.jpg",
- "Name": "The North Face"
- },
- "ListPrice": 99.99,
- "FinalPrice": 99.99
- },
- {
- "Id": "16DXT",
- "IsClearance": false,
- "IsNew": true,
- "Url": "/api/1.0/product/16dxt/",
- "WebUrl": "https://www.sierra.com/product/bounce/16dxt/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16dxt/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/16dxt/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Speed 20 L Backpack",
- "Name": "Dynafit Speed 20 L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/dynafit-speed-20-l-backpack-in-black-cactus~p~16dxt_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/dynafit-speed-20-l-backpack-in-black-cactus~p~16dxt_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/dynafit-speed-20-l-backpack-in-black-cactus~p~16dxt_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/dynafit-speed-20-l-backpack-in-black-cactus~p~16dxt_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/dynafit-speed-20-l-backpack~a~16dxt_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/dynafit-speed-20-l-backpack~a~16dxt_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Black/Cactus",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16dxt-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/dynafit-speed-20-l-backpack-in-black-cactus~p~16dxt_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Made for speed touring ascents, Dynafit's Speed backpack is ultralight-yet-roomy, with plenty of space for safety equipment, and the anatomical design with an airmesh back ensure all-day comfort.",
- "SuggestedRetailPrice": 100.0,
- "Brand": {
- "Id": "1364",
- "Url": "/api/1.0/brand/1364/",
- "ProductsUrl": "/api/1.0/products/dynafit~b~1364/",
- "LogoSrc": "https://i.stpost.com/dynafit-speed-20-l-backpack~b~1364~160x100.jpg",
- "Name": "Dynafit"
- },
- "ListPrice": 59.99,
- "FinalPrice": 59.99
- },
- {
- "Id": "18DTY",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/18dty/",
- "WebUrl": "https://www.sierra.com/product/bounce/18dty/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/18dty/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/18dty/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "AC Lite 26L Backpack - Internal Frame (For Men and Women)",
- "Name": "Deuter AC Lite 26L Backpack - Internal Frame (For Men and Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dty_03~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dty_03~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dty_03~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dty_03~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women~a~18dty_2~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women~a~18dty_3~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "03",
- "ColorName": "Cranberry",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/18dty-03.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dty_03~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Deuter's AC Lite 26L backpack comfortably carries your supplies for a weekend full of trail exploring. Its Aircomfort three-sided back ventilation system allows you to stay drier longer on the hike.",
- "SuggestedRetailPrice": 85.0,
- "Brand": {
- "Id": "4061",
- "Url": "/api/1.0/brand/4061/",
- "ProductsUrl": "/api/1.0/products/deuter~b~4061/",
- "LogoSrc": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women~b~4061~160x100.jpg",
- "Name": "Deuter"
- },
- "ListPrice": 49.99,
- "FinalPrice": 49.99
- },
- {
- "Id": "665HT",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/665ht/",
- "WebUrl": "https://www.sierra.com/product/bounce/665ht/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/665ht/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/665ht/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Amber Adjustable 34L Backpack - Internal Frame (For Women)",
- "Name": "Gregory Amber Adjustable 34L Backpack - Internal Frame (For Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women-in-teal-grey~p~665ht_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women-in-teal-grey~p~665ht_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women-in-teal-grey~p~665ht_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women-in-teal-grey~p~665ht_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women~a~665ht_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Teal Grey",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/665ht-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women-in-teal-grey~p~665ht_02~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . Gregory's Amber 34L backpack is made for long days out or light overnight trips. The streamlined design and internal wire frame give it the long-distance comfort and load management required for extended exploration.",
- "SuggestedRetailPrice": 119.99,
- "Brand": {
- "Id": "7155",
- "Url": "/api/1.0/brand/7155/",
- "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
- "LogoSrc": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women~b~7155~160x100.jpg",
- "Name": "Gregory"
- },
- "ListPrice": 89.99,
- "FinalPrice": 89.99
- },
- {
- "Id": "877FF",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/877ff/",
- "WebUrl": "https://www.sierra.com/product/bounce/877ff/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/877ff/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/877ff/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Amber 60L Backpack - Internal Frame (For Women)",
- "Name": "Gregory Amber 60L Backpack - Internal Frame (For Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women-in-chili-pepper-red~p~877ff_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women-in-chili-pepper-red~p~877ff_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women-in-chili-pepper-red~p~877ff_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women-in-chili-pepper-red~p~877ff_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women~a~877ff_2~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women~a~877ff_3~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women~a~877ff_4~600.2.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Chili Pepper Red",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/877ff-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women-in-chili-pepper-red~p~877ff_02~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . Large enough for multi-day backcountry trips, Gregory's Amber 60 backpack capably manages large loads with a TrailFlex wishbone suspension.",
- "SuggestedRetailPrice": 170.0,
- "Brand": {
- "Id": "7155",
- "Url": "/api/1.0/brand/7155/",
- "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
- "LogoSrc": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women~b~7155~160x100.jpg",
- "Name": "Gregory"
- },
- "ListPrice": 119.99,
- "FinalPrice": 119.99
- },
- {
- "Id": "895FF",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/895ff/",
- "WebUrl": "https://www.sierra.com/product/bounce/895ff/?filterString=s~backpacks%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/895ff/?filterString=s~backpacks%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/895ff/",
- "ReviewCount": 0,
- "AverageRating": 0.0
- },
- "NameWithoutBrand": "Ignite 15L Backpack",
- "Name": "Lowe Alpine Ignite 15L Backpack",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack-in-auburn~p~895ff_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack-in-auburn~p~895ff_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack-in-auburn~p~895ff_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack-in-auburn~p~895ff_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack~a~895ff_2~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack~a~895ff_3~600.2.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack~a~895ff_4~600.1.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack~a~895ff_5~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Auburn",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/895ff-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack-in-auburn~p~895ff_01~160.jpg"
- },
- {
- "ColorCode": "04",
- "ColorName": "Denim",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/895ff-04.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack-in-denim~p~895ff_04~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . The perfect-sized pack for day hikes, Lowe Alpine's Ignite backpack features a large main compartment for holding your gear, Daisy chain lash points, and padded mesh shoulder straps for carrying comfortably.",
- "SuggestedRetailPrice": 35.0,
- "Brand": {
- "Id": "1280",
- "Url": "/api/1.0/brand/1280/",
- "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
- "LogoSrc": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack~b~1280~160x100.jpg",
- "Name": "Lowe Alpine"
- },
- "ListPrice": 19.99,
- "FinalPrice": 19.99
- }
- ]
-}
+{
+ "Count": 64,
+ "Page": 1,
+ "PerPage": 24,
+ "NextPageUrl": "/api/1.0/products/s~backpacks/?page=2",
+ "LastPageUrl": "/api/1.0/products/s~backpacks/?page=3",
+ "RefinementsUrl": "/api/1.0/refinements/search~backpacks/",
+ "Title": "Search for \"backpacks\" ",
+ "Result": [
+ {
+ "Id": "223RN",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/223rn/",
+ "WebUrl": "https://www.sierra.com/product/bounce/223rn/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/223rn/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/223rn/",
+ "ReviewCount": 11,
+ "AverageRating": 4.64
+ },
+ "NameWithoutBrand": "Zulu 55 Backpack - Internal Frame",
+ "Name": "Gregory Zulu 55 Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame-in-moss-green~p~223rn_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame-in-moss-green~p~223rn_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame-in-moss-green~p~223rn_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame-in-moss-green~p~223rn_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame~a~223rn_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame~a~223rn_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["M", "L"] },
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Moss Green",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/223rn-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame-in-moss-green~p~223rn_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Gregory's Zulu 55 backpack boasts a streamlined, yet spacious design ideal for weekend trips and winter overnights. The highly breathable CrossFlo DTS suspension system keeps air circulating across your back, and the bottom compartment offers easy access to your sleeping bag.",
+ "SuggestedRetailPrice": 199.0,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-zulu-55-backpack-internal-frame~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "810NV",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/810nv/",
+ "WebUrl": "https://www.sierra.com/product/bounce/810nv/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/810nv/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/810nv/",
+ "ReviewCount": 1,
+ "AverageRating": 5.0
+ },
+ "NameWithoutBrand": "Paragon 58L Backpack - Internal Frame",
+ "Name": "Gregory Paragon 58L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame-in-sunset-grey~p~810nv_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame-in-sunset-grey~p~810nv_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame-in-sunset-grey~p~810nv_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame-in-sunset-grey~p~810nv_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame~a~810nv_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S/M", "M/L"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Sunset Grey",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/810nv-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame-in-sunset-grey~p~810nv_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . The perfect lightweight companion for overnighting and minimalist trekking, Gregory's Paragon 58L backpack is well-balanced with an alloy Aerolon suspension for outstanding load support and plenty of pockets for organization.",
+ "SuggestedRetailPrice": 189.99,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-paragon-58l-backpack-internal-frame~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "848MJ",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/848mj/",
+ "WebUrl": "https://www.sierra.com/product/bounce/848mj/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848mj/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/848mj/",
+ "ReviewCount": 1,
+ "AverageRating": 3.0
+ },
+ "NameWithoutBrand": "Versant 70L Backpack - Internal Frame (For Men)",
+ "Name": "Thule Versant 70L Backpack - Internal Frame (For Men)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men-in-fjord~p~848mj_03~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men-in-fjord~p~848mj_03~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men-in-fjord~p~848mj_03~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men-in-fjord~p~848mj_03~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men~a~848mj_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men~a~848mj_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men~a~848mj_4~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men~a~848mj_5~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "03",
+ "ColorName": "Fjord",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848mj-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men-in-fjord~p~848mj_03~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . When your fun backpacking trip turns into a stormy mess, Thule's Versant 70L backpack has you covered with an integrated StormGuard weatherproofing system that keeps your gear safe from moisture. The adjustable torso and waistbelt ensure the pack fits perfectly every time (even over extra layers), and the main compartment is accessible via the top or a wide-opening front zip panel so that you don't have to totally unpack your bag every time you want something.",
+ "SuggestedRetailPrice": 215.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-men~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "541HM",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/541hm/",
+ "WebUrl": "https://www.sierra.com/product/bounce/541hm/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/541hm/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/541hm/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Revol 50L Backpack",
+ "Name": "Kelty Revol 50L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/kelty-revol-50l-backpack-in-raven~p~541hm_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/kelty-revol-50l-backpack-in-raven~p~541hm_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/kelty-revol-50l-backpack-in-raven~p~541hm_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/kelty-revol-50l-backpack-in-raven~p~541hm_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-revol-50l-backpack~a~541hm_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-revol-50l-backpack~a~541hm_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Raven",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/541hm-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-revol-50l-backpack-in-raven~p~541hm_02~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Forest Green",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/541hm-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-revol-50l-backpack-in-forest-green~p~541hm_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . A tried and trusted trail pack upgraded with modern, streamlined features and plenty of space for multi-day excursions, Kelty Revol 50L backpack boasts the Kinesis waistbelt that moves and adjusts with your every step, and a parallel-pivot design that keeps the shape of the waistbelt contoured to your body as you hike.",
+ "SuggestedRetailPrice": 149.99,
+ "Brand": {
+ "Id": "1105",
+ "Url": "/api/1.0/brand/1105/",
+ "ProductsUrl": "/api/1.0/products/kelty~b~1105/",
+ "LogoSrc": "https://i.stpost.com/kelty-revol-50l-backpack~b~1105~160x100.jpg",
+ "Name": "Kelty"
+ },
+ "ListPrice": 119.99,
+ "FinalPrice": 119.99
+ },
+ {
+ "Id": "848MD",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/848md/",
+ "WebUrl": "https://www.sierra.com/product/bounce/848md/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848md/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/848md/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Versant 60L Backpack - Internal Frame (For Men)",
+ "Name": "Thule Versant 60L Backpack - Internal Frame (For Men)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men-in-fjord~p~848md_03~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men-in-fjord~p~848md_03~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men-in-fjord~p~848md_03~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men-in-fjord~p~848md_03~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men~a~848md_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men~a~848md_3~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "03",
+ "ColorName": "Fjord",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848md-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men-in-fjord~p~848md_03~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Dark Forest",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848md-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men-in-dark-forest~p~848md_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . When your fun backpacking trip turns into a stormy mess, Thule's Versant 60L backpack has you covered with an integrated StormGuard weatherproofing system that keeps your gear safe from moisture. The adjustable torso and waistbelt ensure the pack fits perfectly every time (even over extra layers), and the main compartment is accessible via the top and a wide-opening front zip panel. Bonus: The roomy, floating lid quickly converts into a sling pack for day hikes.",
+ "SuggestedRetailPrice": 205.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-men~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "889PR",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/889pr/",
+ "WebUrl": "https://www.sierra.com/product/bounce/889pr/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/889pr/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/889pr/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Stout 45 Adjustable Backpack",
+ "Name": "Gregory Stout 45 Adjustable Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-stout-45-adjustable-backpack-in-prairie-orange~p~889pr_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-stout-45-adjustable-backpack-in-prairie-orange~p~889pr_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-stout-45-adjustable-backpack-in-prairie-orange~p~889pr_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-stout-45-adjustable-backpack-in-prairie-orange~p~889pr_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-stout-45-adjustable-backpack~a~889pr_2~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-stout-45-adjustable-backpack~a~889pr_3~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-stout-45-adjustable-backpack~a~889pr_4~600.3.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Prairie Orange",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/889pr-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-stout-45-adjustable-backpack-in-prairie-orange~p~889pr_02~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Navy Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/889pr-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-stout-45-adjustable-backpack-in-navy-blue~p~889pr_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Supportive and smartly designed, Gregory's Stout 35 backpack features a TrailFlex wishbone suspension so it carries comfortably when fully loaded. A roomy, yet compact option well-suited to weekend backpacking trips through technical terrain.",
+ "SuggestedRetailPrice": 149.99,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-stout-45-adjustable-backpack~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 99.99,
+ "FinalPrice": 99.99
+ },
+ {
+ "Id": "928PD",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/928pd/",
+ "WebUrl": "https://www.sierra.com/product/bounce/928pd/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/928pd/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/928pd/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Trophy TS 20L Backpack",
+ "Name": "CamelBak Trophy TS 20L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack-in-mossy-oak-country-break-up~p~928pd_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack-in-mossy-oak-country-break-up~p~928pd_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack-in-mossy-oak-country-break-up~p~928pd_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack-in-mossy-oak-country-break-up~p~928pd_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack~a~928pd_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack~a~928pd_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack~a~928pd_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Mossy Oak Country Break-Up",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/928pd-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack-in-mossy-oak-country-break-up~p~928pd_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Keep hunting essentials close at hand using CamelBak's Trophy TS 20 backpack, optimized for stand hunting with a deployable work shelf and a strap-based hanging system.",
+ "SuggestedRetailPrice": 149.0,
+ "Brand": {
+ "Id": "6070",
+ "Url": "/api/1.0/brand/6070/",
+ "ProductsUrl": "/api/1.0/products/camelbak~b~6070/",
+ "LogoSrc": "https://i.stpost.com/camelbak-trophy-ts-20l-backpack~b~6070~160x100.jpg",
+ "Name": "CamelBak"
+ },
+ "ListPrice": 79.99,
+ "FinalPrice": 79.99
+ },
+ {
+ "Id": "665HD",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/665hd/",
+ "WebUrl": "https://www.sierra.com/product/bounce/665hd/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/665hd/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/665hd/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Maven 45L Backpack - Internal Frame",
+ "Name": "Gregory Maven 45L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame-in-forest-grey~p~665hd_03~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame-in-forest-grey~p~665hd_03~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame-in-forest-grey~p~665hd_03~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame-in-forest-grey~p~665hd_03~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame~a~665hd_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame~a~665hd_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame~a~665hd_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S/M", "XS/S"] },
+ "Colors": [
+ {
+ "ColorCode": "03",
+ "ColorName": "Forest Grey",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/665hd-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame-in-forest-grey~p~665hd_03~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Phoenix Red",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/665hd-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame-in-phoenix-red~p~665hd_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . The perfect lightweight companion for peak-bagging and minimalist overnighting, Gregory's Maven 45L backpack is well-balanced with alloy anti-barreling stays and an HDPE sheet for firm support.",
+ "SuggestedRetailPrice": 149.99,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-maven-45l-backpack-internal-frame~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 99.99,
+ "FinalPrice": 99.99
+ },
+ {
+ "Id": "896MX",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/896mx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/896mx/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896mx/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/896mx/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Manaslu 65L Backpack - Internal Frame",
+ "Name": "Lowe Alpine Manaslu 65L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame-in-oxide~p~896mx_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame-in-oxide~p~896mx_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame-in-oxide~p~896mx_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame-in-oxide~p~896mx_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame~a~896mx_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame~a~896mx_3~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Oxide",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mx-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame-in-oxide~p~896mx_01~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Shaded Spruce",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mx-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame-in-shaded-spruce~p~896mx_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . An epic adventure requires an epic pack, and that's where Lowe Alpine's Manaslu 65L backpack comes in. With its durable construction, expandable lid, Axiom 5 back adjustment system, abundant gear storage and ergonomic design, this backpack is the perfect companion for days, weeks -- or months -- of backpacking or travel.",
+ "SuggestedRetailPrice": 255.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-manaslu-65l-backpack-internal-frame~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 119.0,
+ "FinalPrice": 119.0
+ },
+ {
+ "Id": "896MT",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/896mt/",
+ "WebUrl": "https://www.sierra.com/product/bounce/896mt/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896mt/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/896mt/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Mountain Ascent 40L Backpack",
+ "Name": "Lowe Alpine Mountain Ascent 40L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-haute-red~p~896mt_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-haute-red~p~896mt_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-haute-red~p~896mt_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-haute-red~p~896mt_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack~a~896mt_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack~a~896mt_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Haute Red",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mt-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-haute-red~p~896mt_01~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Marine",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mt-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-marine~p~896mt_02~160.jpg"
+ },
+ {
+ "ColorCode": "03",
+ "ColorName": "Onyx",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mt-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack-in-onyx~p~896mt_03~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Designed with winter climbers in mind, this Lowe Alpine Mountain Ascent 40L backpack has you covered with plenty of room for your gear, and features gear loops, rope holder, a Headlocker ice axe attachment system and wide slots to tote your powder skis.",
+ "SuggestedRetailPrice": 190.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-mountain-ascent-40l-backpack~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 79.0,
+ "FinalPrice": 79.0
+ },
+ {
+ "Id": "223RM",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/223rm/",
+ "WebUrl": "https://www.sierra.com/product/bounce/223rm/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/223rm/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/223rm/",
+ "ReviewCount": 11,
+ "AverageRating": 4.27
+ },
+ "NameWithoutBrand": "Jade 53 Backpack (For Women)",
+ "Name": "Gregory Jade 53 Backpack (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-jade-53-backpack-for-women-in-dark-charcoal~p~223rm_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-jade-53-backpack-for-women-in-dark-charcoal~p~223rm_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-jade-53-backpack-for-women-in-dark-charcoal~p~223rm_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-jade-53-backpack-for-women-in-dark-charcoal~p~223rm_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-jade-53-backpack-for-women~a~223rm_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S", "M"] },
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Dark Charcoal",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/223rm-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-jade-53-backpack-for-women-in-dark-charcoal~p~223rm_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Designed especially for trail-bound women, Gregory's Jade 53 backpack features an easy-access, expandable front bucket pocket that's perfect for stowing extra layers and rain gear. Plus, the ventilating CrossFlo DTS system offers comfort for the long haul, and the top pocket detaches as a daypack for shorter treks.",
+ "SuggestedRetailPrice": 199.0,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-jade-53-backpack-for-women~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "896NA",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/896na/",
+ "WebUrl": "https://www.sierra.com/product/bounce/896na/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896na/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/896na/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Manaslu 55L Backpack - Internal Frame",
+ "Name": "Lowe Alpine Manaslu 55L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame-in-shaded-spruce~p~896na_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame-in-shaded-spruce~p~896na_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame-in-shaded-spruce~p~896na_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame-in-shaded-spruce~p~896na_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame~a~896na_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame~a~896na_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Shaded Spruce",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896na-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame-in-shaded-spruce~p~896na_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . An epic adventure requires an epic pack, and that's where Lowe Alpine's Manaslu 55L backpack comes in. With its durable construction, expandable lid, Axiom 5 back adjustment system, abundant gear storage and ergonomic design, this backpack is the perfect companion for mid-range trips.",
+ "SuggestedRetailPrice": 240.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-manaslu-55l-backpack-internal-frame~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 149.99,
+ "FinalPrice": 149.99
+ },
+ {
+ "Id": "810NW",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/810nw/",
+ "WebUrl": "https://www.sierra.com/product/bounce/810nw/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/810nw/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/810nw/",
+ "ReviewCount": 1,
+ "AverageRating": 5.0
+ },
+ "NameWithoutBrand": "Maven 55L Backpack - Internal Frame",
+ "Name": "Gregory Maven 55L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame-in-river-blue~p~810nw_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame-in-river-blue~p~810nw_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame-in-river-blue~p~810nw_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame-in-river-blue~p~810nw_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame~a~810nw_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["XS/S", "S/M"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "River Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/810nw-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame-in-river-blue~p~810nw_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . The perfect lightweight companion for peak-bagging and minimalist overnighting, Gregory's Maven 55L backpack is well-balanced with alloy anti-barreling stays and an HDPE sheet for firm support.",
+ "SuggestedRetailPrice": 189.99,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-maven-55l-backpack-internal-frame~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 149.99,
+ "FinalPrice": 149.99
+ },
+ {
+ "Id": "893WV",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/893wv/",
+ "WebUrl": "https://www.sierra.com/product/bounce/893wv/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/893wv/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/893wv/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Capstone 32L Backpack - Internal Frame (For Women)",
+ "Name": "Thule Capstone 32L Backpack - Internal Frame (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women-in-deep-teal~p~893wv_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women-in-deep-teal~p~893wv_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women-in-deep-teal~p~893wv_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women-in-deep-teal~p~893wv_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women~a~893wv_2~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Deep Teal",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/893wv-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women-in-deep-teal~p~893wv_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Thule's Capstone 32L backpack is a spacious, super-supportive daypack that can be loaded down comfortably for long day hikes and peak scrambling. The MicroAdjust suspension lets you adjust the torso length along the tubular aluminum frame while wearing the pack.",
+ "SuggestedRetailPrice": 140.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-capstone-32l-backpack-internal-frame-for-women~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 69.0,
+ "FinalPrice": 69.0
+ },
+ {
+ "Id": "810NP",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/810np/",
+ "WebUrl": "https://www.sierra.com/product/bounce/810np/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/810np/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/810np/",
+ "ReviewCount": 1,
+ "AverageRating": 5.0
+ },
+ "NameWithoutBrand": "Paragon 68L Backpack",
+ "Name": "Gregory Paragon 68L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-paragon-68l-backpack-in-omega-blue~p~810np_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-paragon-68l-backpack-in-omega-blue~p~810np_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-paragon-68l-backpack-in-omega-blue~p~810np_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-paragon-68l-backpack-in-omega-blue~p~810np_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-paragon-68l-backpack~a~810np_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["M/L"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Omega Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/810np-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-paragon-68l-backpack-in-omega-blue~p~810np_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . The perfect lightweight companion for overnighting and minimalist trekking, Gregory's Paragon 58L backpack is well-balanced with an alloy Aerolon suspension for outstanding load support and plenty of pockets for organization.",
+ "SuggestedRetailPrice": 229.99,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-paragon-68l-backpack~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 119.0,
+ "FinalPrice": 119.0
+ },
+ {
+ "Id": "893WU",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/893wu/",
+ "WebUrl": "https://www.sierra.com/product/bounce/893wu/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/893wu/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/893wu/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Capstone 22L Backpack (For Men)",
+ "Name": "Thule Capstone 22L Backpack (For Men)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-atlantic~p~893wu_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-atlantic~p~893wu_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-atlantic~p~893wu_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-atlantic~p~893wu_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-capstone-22l-backpack-for-men~a~893wu_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S/M", "M/L"] },
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Atlantic",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/893wu-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-atlantic~p~893wu_02~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Obsidian",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/893wu-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-obsidian~p~893wu_01~160.jpg"
+ },
+ {
+ "ColorCode": "03",
+ "ColorName": "Slickrock",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/893wu-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-capstone-22l-backpack-for-men-in-slickrock~p~893wu_03~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Just add your sense of adventure! The Thule Capstone 22L backpack features a micro-adjustable suspension that provides the perfect fit, and it has all the trail-ready features you need for day trips and ultralight overnights.",
+ "SuggestedRetailPrice": 115.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-capstone-22l-backpack-for-men~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 79.99,
+ "FinalPrice": 79.99
+ },
+ {
+ "Id": "896MU",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/896mu/",
+ "WebUrl": "https://www.sierra.com/product/bounce/896mu/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896mu/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/896mu/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Cerro Torre 65L Large Backpack - Internal Frame",
+ "Name": "Lowe Alpine Cerro Torre 65L Large Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame-in-bondi-blue~p~896mu_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame-in-bondi-blue~p~896mu_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame-in-bondi-blue~p~896mu_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame-in-bondi-blue~p~896mu_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame~a~896mu_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame~a~896mu_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Bondi Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mu-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame-in-bondi-blue~p~896mu_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . If you want a bag that does it all, look no further than Lowe Alpine's Cerro Torre 65L Large backpack. With its durable TriShield® Grid construction, expandable lid, Axiom 7 back adjustment system, abundant gear storage and ergonomic design, this backpack is the perfect companion for lengthy backpacking trips.",
+ "SuggestedRetailPrice": 300.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-cerro-torre-65l-large-backpack-internal-frame~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 149.0,
+ "FinalPrice": 149.0
+ },
+ {
+ "Id": "730FX",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/730fx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/730fx/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/730fx/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/730fx/",
+ "ReviewCount": 1,
+ "AverageRating": 4.0
+ },
+ "NameWithoutBrand": "Instigator 32L Backpack",
+ "Name": "The North Face Instigator 32L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/the-north-face-instigator-32l-backpack-in-tnf-yellow-tnf-black~p~730fx_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/the-north-face-instigator-32l-backpack-in-tnf-yellow-tnf-black~p~730fx_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/the-north-face-instigator-32l-backpack-in-tnf-yellow-tnf-black~p~730fx_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-instigator-32l-backpack-in-tnf-yellow-tnf-black~p~730fx_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-instigator-32l-backpack~a~730fx_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-instigator-32l-backpack~a~730fx_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-instigator-32l-backpack~a~730fx_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Tnf Yellow/Tnf Black",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/730fx-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-instigator-32l-backpack-in-tnf-yellow-tnf-black~p~730fx_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . At home in town and on the trail, The North Face's Instigator backpack lets you take it all with you safely and comfortably thanks to a massive main compartment, a padded laptop sleeve, and padded straps for optimal comfort.",
+ "SuggestedRetailPrice": 109.0,
+ "Brand": {
+ "Id": "1440",
+ "Url": "/api/1.0/brand/1440/",
+ "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
+ "LogoSrc": "https://i.stpost.com/the-north-face-instigator-32l-backpack~b~1440~160x100.jpg",
+ "Name": "The North Face"
+ },
+ "ListPrice": 59.0,
+ "FinalPrice": 59.0
+ },
+ {
+ "Id": "897XT",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/897xt/",
+ "WebUrl": "https://www.sierra.com/product/bounce/897xt/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/897xt/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/897xt/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Terraframe 3-Zip 50L Backpack",
+ "Name": "Mystery Ranch Terraframe 3-Zip 50L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xt_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xt_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xt_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xt_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack~a~897xt_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack~a~897xt_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["M"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Phantom",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/897xt-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xt_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Easily manage awkward, oversized loads on the trail with Mystery Ranch's Terraframe 3-Zip 50L backpack, a versatile hybrid bag featuring a rigid, carbon-fiber frame that flexes with your body, expandable Terraframe technology, a Y-shaped three-zip system for easy access to your full bag, and an OVERLOAD® sling that supports up to 150 pounds.",
+ "SuggestedRetailPrice": 330.0,
+ "Brand": {
+ "Id": "37083",
+ "Url": "/api/1.0/brand/37083/",
+ "ProductsUrl": "/api/1.0/products/mystery-ranch~b~37083/",
+ "LogoSrc": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack~b~37083~160x100.jpg",
+ "Name": "Mystery Ranch"
+ },
+ "ListPrice": 229.99,
+ "FinalPrice": 229.99
+ },
+ {
+ "Id": "20FWN",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/20fwn/",
+ "WebUrl": "https://www.sierra.com/product/bounce/20fwn/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/20fwn/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/20fwn/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Banchee 65 Pack",
+ "Name": "The North Face Banchee 65 Pack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/the-north-face-banchee-65-pack-in-urban-navy-bright-cobalt-blue~p~20fwn_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/the-north-face-banchee-65-pack-in-urban-navy-bright-cobalt-blue~p~20fwn_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/the-north-face-banchee-65-pack-in-urban-navy-bright-cobalt-blue~p~20fwn_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-banchee-65-pack-in-urban-navy-bright-cobalt-blue~p~20fwn_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-banchee-65-pack~a~20fwn_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S/M", "L/XL"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Urban Navy/Bright Cobalt Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/20fwn-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-banchee-65-pack-in-urban-navy-bright-cobalt-blue~p~20fwn_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . From day hikes to overnight trips, The North Face's Banchee 65 pack will hold all your gear without weighing you down. With an ultralight, durable aluminum frame and FlashDry technology, you can comfortably carry this pack through any terrain.",
+ "SuggestedRetailPrice": 220.0,
+ "Brand": {
+ "Id": "1440",
+ "Url": "/api/1.0/brand/1440/",
+ "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
+ "LogoSrc": "https://i.stpost.com/the-north-face-banchee-65-pack~b~1440~160x100.jpg",
+ "Name": "The North Face"
+ },
+ "ListPrice": 149.99,
+ "FinalPrice": 149.99
+ },
+ {
+ "Id": "897XN",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/897xn/",
+ "WebUrl": "https://www.sierra.com/product/bounce/897xn/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/897xn/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/897xn/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Hover Pack 40L Backpack - Internal Frame",
+ "Name": "Mystery Ranch Hover Pack 40L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame-in-deep-sea~p~897xn_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame-in-deep-sea~p~897xn_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame-in-deep-sea~p~897xn_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame-in-deep-sea~p~897xn_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame~a~897xn_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame~a~897xn_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["M", "L"] },
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Deep Sea",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/897xn-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame-in-deep-sea~p~897xn_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . The Mystery Ranch Hover 40L backpack features a highly breathable Hover system that allows air flow between your back and the pack, ample padding through the back and hips, and just-right room for all your gear.",
+ "SuggestedRetailPrice": 225.0,
+ "Brand": {
+ "Id": "37083",
+ "Url": "/api/1.0/brand/37083/",
+ "ProductsUrl": "/api/1.0/products/mystery-ranch~b~37083/",
+ "LogoSrc": "https://i.stpost.com/mystery-ranch-hover-pack-40l-backpack-internal-frame~b~37083~160x100.jpg",
+ "Name": "Mystery Ranch"
+ },
+ "ListPrice": 149.99,
+ "FinalPrice": 149.99
+ },
+ {
+ "Id": "897XX",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/897xx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/897xx/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/897xx/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/897xx/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Terraframe 3-Zip 50L Backpack",
+ "Name": "Mystery Ranch Terraframe 3-Zip 50L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xx_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xx_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xx_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xx_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack~a~897xx_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack~a~897xx_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S", "M", "XL"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Phantom",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/897xx-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-phantom~p~897xx_01~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Deep Earth",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/897xx-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack-in-deep-earth~p~897xx_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Easily manage awkward, oversized loads on the trail with Mystery Ranch's Terraframe 3-Zip 50L backpack, a versatile hybrid bag featuring a rigid, carbon-fiber frame that flexes with your body, expandable Terraframe technology, a Y-shaped three-zip system for easy access to your full bag, and an OVERLOAD® sling that supports up to 150 pounds.",
+ "SuggestedRetailPrice": 330.0,
+ "Brand": {
+ "Id": "37083",
+ "Url": "/api/1.0/brand/37083/",
+ "ProductsUrl": "/api/1.0/products/mystery-ranch~b~37083/",
+ "LogoSrc": "https://i.stpost.com/mystery-ranch-terraframe-3-zip-50l-backpack~b~37083~160x100.jpg",
+ "Name": "Mystery Ranch"
+ },
+ "ListPrice": 229.99,
+ "FinalPrice": 229.99
+ },
+ {
+ "Id": "889KT",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/889kt/",
+ "WebUrl": "https://www.sierra.com/product/bounce/889kt/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/889kt/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/889kt/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Stout 65L Backpack",
+ "Name": "Gregory Stout 65L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-stout-65l-backpack-in-navy-blue~p~889kt_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-stout-65l-backpack-in-navy-blue~p~889kt_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-stout-65l-backpack-in-navy-blue~p~889kt_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-stout-65l-backpack-in-navy-blue~p~889kt_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-stout-65l-backpack~a~889kt_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-stout-65l-backpack~a~889kt_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Navy Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/889kt-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-stout-65l-backpack-in-navy-blue~p~889kt_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Built for multi-day trips and globe-trotting travel, the Gregory Stout 65L backpack has all the comfort, advanced pack technology and organizing features you expect from the backpack experts at Gregory.",
+ "SuggestedRetailPrice": 169.99,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-stout-65l-backpack~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "20FWM",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/20fwm/",
+ "WebUrl": "https://www.sierra.com/product/bounce/20fwm/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/20fwm/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/20fwm/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Hydra 38 Backpack",
+ "Name": "The North Face Hydra 38 Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/the-north-face-hydra-38-backpack-in-urban-navy-bomber-blue~p~20fwm_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/the-north-face-hydra-38-backpack-in-urban-navy-bomber-blue~p~20fwm_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/the-north-face-hydra-38-backpack-in-urban-navy-bomber-blue~p~20fwm_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-hydra-38-backpack-in-urban-navy-bomber-blue~p~20fwm_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-hydra-38-backpack~a~20fwm_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-hydra-38-backpack~a~20fwm_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["L/XL", "S/M"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Urban Navy/Bomber Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/20fwm-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-hydra-38-backpack-in-urban-navy-bomber-blue~p~20fwm_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . From day hikes to overnight trips, The North Face's Hydra 38 backpack will hold all your gear without weighing you down. With an ultralight, durable aluminum frame and FlashDry® technology, you can comfortably carry this pack through any terrain.",
+ "SuggestedRetailPrice": 140.0,
+ "Brand": {
+ "Id": "1440",
+ "Url": "/api/1.0/brand/1440/",
+ "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
+ "LogoSrc": "https://i.stpost.com/the-north-face-hydra-38-backpack~b~1440~160x100.jpg",
+ "Name": "The North Face"
+ },
+ "ListPrice": 99.99,
+ "FinalPrice": 99.99
+ },
+ {
+ "Id": "195UK",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/195uk/",
+ "WebUrl": "https://www.sierra.com/product/bounce/195uk/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/195uk/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/195uk/",
+ "ReviewCount": 20,
+ "AverageRating": 4.35
+ },
+ "NameWithoutBrand": "Jade 38L Backpack - Internal Frame (For Women)",
+ "Name": "Gregory Jade 38L Backpack - Internal Frame (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-dark-charcoal~p~195uk_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-dark-charcoal~p~195uk_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-dark-charcoal~p~195uk_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-dark-charcoal~p~195uk_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women~a~195uk_2~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S", "M", "XS"] },
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Dark Charcoal",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/195uk-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-dark-charcoal~p~195uk_02~160.jpg"
+ },
+ {
+ "ColorCode": "04",
+ "ColorName": "Mountain Purple",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/195uk-04.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-mountain-purple~p~195uk_04~160.jpg"
+ },
+ {
+ "ColorCode": "03",
+ "ColorName": "Ruby Red",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/195uk-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women-in-ruby-red~p~195uk_03~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Designed especially for trail-bound women, Gregory's Jade 38 backpack features an easy-access, expandable front bucket pocket that's perfect for stowing extra layers and rain gear. Plus, the ventilating CrossFlo DTS system offers comfort for the long haul.",
+ "SuggestedRetailPrice": 179.0,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-jade-38l-backpack-internal-frame-for-women~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 79.99,
+ "FinalPrice": 79.99
+ },
+ {
+ "Id": "848JY",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/848jy/",
+ "WebUrl": "https://www.sierra.com/product/bounce/848jy/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848jy/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/848jy/",
+ "ReviewCount": 1,
+ "AverageRating": 5.0
+ },
+ "NameWithoutBrand": "Stir 28L Backpack",
+ "Name": "Thule Stir 28L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-stir-28l-backpack-in-dark-shadow~p~848jy_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-stir-28l-backpack-in-dark-shadow~p~848jy_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-stir-28l-backpack-in-dark-shadow~p~848jy_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-stir-28l-backpack-in-dark-shadow~p~848jy_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-28l-backpack~a~848jy_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-28l-backpack~a~848jy_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Dark Shadow",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848jy-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-28l-backpack-in-dark-shadow~p~848jy_01~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Dark Forest",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848jy-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-28l-backpack-in-dark-forest~p~848jy_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . With its 28-liter capacity and smart suspension, the Thule Stir backpack is nicely sized for day hikes and other short trips.",
+ "SuggestedRetailPrice": 110.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-stir-28l-backpack~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 69.99,
+ "FinalPrice": 69.99
+ },
+ {
+ "Id": "889DC",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/889dc/",
+ "WebUrl": "https://www.sierra.com/product/bounce/889dc/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/889dc/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/889dc/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Amber 60L Backpack (For Women)",
+ "Name": "Gregory Amber 60L Backpack (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-amber-60l-backpack-for-women-in-pearl-blue~p~889dc_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-amber-60l-backpack-for-women-in-pearl-blue~p~889dc_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-amber-60l-backpack-for-women-in-pearl-blue~p~889dc_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-amber-60l-backpack-for-women-in-pearl-blue~p~889dc_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-amber-60l-backpack-for-women~a~889dc_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Pearl Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/889dc-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-amber-60l-backpack-for-women-in-pearl-blue~p~889dc_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . The features, TrailFlex suspension and 60-liter capacity of the Gregory Amber 60L backpack combine to hit a sweet spot -- this versatile backpack can cover quick over-night trips and multi-day hikes with equal ease.",
+ "SuggestedRetailPrice": 169.99,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-amber-60l-backpack-for-women~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "877UJ",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/877uj/",
+ "WebUrl": "https://www.sierra.com/product/bounce/877uj/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/877uj/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/877uj/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "ACT Lite 60+10 SL Backpack - Internal Frame (For Women)",
+ "Name": "Deuter ACT Lite 60+10 SL Backpack - Internal Frame (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~877uj_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~877uj_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~877uj_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~877uj_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Pine/Moss",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/877uj-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~877uj_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Take an extended trip and spend your days surrounded by amazing views and the lovely sounds of nature with Deuter's ACT Lite 60+10 SL backpack, designed with multiple points of adjustment for a fine-tuned fit and a spacious main compartment with a floating lid and spindrift collar that can accommodate an extra 10 liters of gear.",
+ "SuggestedRetailPrice": 180.0,
+ "Brand": {
+ "Id": "4061",
+ "Url": "/api/1.0/brand/4061/",
+ "ProductsUrl": "/api/1.0/products/deuter~b~4061/",
+ "LogoSrc": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women~b~4061~160x100.jpg",
+ "Name": "Deuter"
+ },
+ "ListPrice": 119.99,
+ "FinalPrice": 119.99
+ },
+ {
+ "Id": "665GX",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/665gx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/665gx/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/665gx/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/665gx/",
+ "ReviewCount": 1,
+ "AverageRating": 5.0
+ },
+ "NameWithoutBrand": "Paragon 48L Backpack - Internal Frame",
+ "Name": "Gregory Paragon 48L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame-in-sunset-grey~p~665gx_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame-in-sunset-grey~p~665gx_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame-in-sunset-grey~p~665gx_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame-in-sunset-grey~p~665gx_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame~a~665gx_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S/M", "M/L"] },
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Sunset Grey",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/665gx-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame-in-sunset-grey~p~665gx_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . The perfect lightweight companion for overnighting and minimalist trekking, Gregory's Paragon 48L backpack is well-balanced with an alloy Aerolon suspension for outstanding load support and plenty of pockets for organization.",
+ "SuggestedRetailPrice": 149.99,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-paragon-48l-backpack-internal-frame~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 119.99,
+ "FinalPrice": 119.99
+ },
+ {
+ "Id": "19JDX",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/19jdx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/19jdx/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/19jdx/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/19jdx/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Peak 45L Backpack - Internal Frame",
+ "Name": "ALPS Mountaineering Peak 45L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame-in-clay-apricot~p~19jdx_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame-in-clay-apricot~p~19jdx_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame-in-clay-apricot~p~19jdx_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame-in-clay-apricot~p~19jdx_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame~a~19jdx_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame~a~19jdx_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Clay/Apricot",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/19jdx-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame-in-clay-apricot~p~19jdx_01~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Gray",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/19jdx-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame-in-gray~p~19jdx_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Ready for any adventure, this ALPS Mountaineering Peak 45 backpack features plenty of space for gear and essentials with a large main compartment, hip belt pockets and lid pocket, removable waist belt and a rain cover for stormy days.",
+ "SuggestedRetailPrice": 90.0,
+ "Brand": {
+ "Id": "1156",
+ "Url": "/api/1.0/brand/1156/",
+ "ProductsUrl": "/api/1.0/products/alps-mountaineering~b~1156/",
+ "LogoSrc": "https://i.stpost.com/alps-mountaineering-peak-45l-backpack-internal-frame~b~1156~160x100.jpg",
+ "Name": "ALPS Mountaineering"
+ },
+ "ListPrice": 69.99,
+ "FinalPrice": 69.99
+ },
+ {
+ "Id": "893WW",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/893ww/",
+ "WebUrl": "https://www.sierra.com/product/bounce/893ww/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/893ww/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/893ww/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Capstone 32L Backpack (For Men)",
+ "Name": "Thule Capstone 32L Backpack (For Men)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-capstone-32l-backpack-for-men-in-obsidian~p~893ww_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-capstone-32l-backpack-for-men-in-obsidian~p~893ww_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-capstone-32l-backpack-for-men-in-obsidian~p~893ww_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-capstone-32l-backpack-for-men-in-obsidian~p~893ww_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-capstone-32l-backpack-for-men~a~893ww_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Obsidian",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/893ww-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-capstone-32l-backpack-for-men-in-obsidian~p~893ww_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Just add your sense of adventure! The Thule Capstone 32L backpack features a micro-adjustable suspension that provides the perfect fit, and it has all the trail-ready features you need for day trips and ultralight overnights.",
+ "SuggestedRetailPrice": 140.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-capstone-32l-backpack-for-men~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 89.99,
+ "FinalPrice": 89.99
+ },
+ {
+ "Id": "172TX",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/172tx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/172tx/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/172tx/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/172tx/",
+ "ReviewCount": 7,
+ "AverageRating": 4.0
+ },
+ "NameWithoutBrand": "Lookout 80L Backpack - Internal Frame",
+ "Name": "Mountainsmith Lookout 80L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame-in-pinon-green~p~172tx_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame-in-pinon-green~p~172tx_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame-in-pinon-green~p~172tx_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame-in-pinon-green~p~172tx_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame~a~172tx_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Pinon Green",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/172tx-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame-in-pinon-green~p~172tx_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . A heavy-duty hauler at a great value, Mountainsmith's Lookout 80L backpack is ready for multi-day backpacking missions. The adjustable, supportive suspension system and spacious main compartment mean you can load it up and still move comfortably on the trail.",
+ "SuggestedRetailPrice": 224.95,
+ "Brand": {
+ "Id": "13540",
+ "Url": "/api/1.0/brand/13540/",
+ "ProductsUrl": "/api/1.0/products/mountainsmith~b~13540/",
+ "LogoSrc": "https://i.stpost.com/mountainsmith-lookout-80l-backpack-internal-frame~b~13540~160x100.jpg",
+ "Name": "Mountainsmith"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "848MG",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/848mg/",
+ "WebUrl": "https://www.sierra.com/product/bounce/848mg/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848mg/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/848mg/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Versant 60L Backpack - Internal Frame (For Women)",
+ "Name": "Thule Versant 60L Backpack - Internal Frame (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mg_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mg_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mg_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mg_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women~a~848mg_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women~a~848mg_3~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women~a~848mg_4~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women~a~848mg_5~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Mazerine Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848mg-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mg_02~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Deep Teal",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848mg-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women-in-deep-teal~p~848mg_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Thule's Versant 60L backpack is spacious and supportive enough for multi-day backcountry trips and backpacker travel. The female-specific design includes waistbelt and torso adjustability for customizable comfort, access to the spacious main compartment from the top and front, and a three-quarter rain cover with a waterproof bottom liner to protect your gear from the elements.",
+ "SuggestedRetailPrice": 205.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-versant-60l-backpack-internal-frame-for-women~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "486KV",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/486kv/",
+ "WebUrl": "https://www.sierra.com/product/bounce/486kv/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/486kv/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/486kv/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Approach 25L Backpack",
+ "Name": "Mountainsmith Approach 25L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/mountainsmith-approach-25l-backpack-in-dark-camo~p~486kv_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/mountainsmith-approach-25l-backpack-in-dark-camo~p~486kv_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/mountainsmith-approach-25l-backpack-in-dark-camo~p~486kv_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/mountainsmith-approach-25l-backpack-in-dark-camo~p~486kv_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mountainsmith-approach-25l-backpack~a~486kv_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mountainsmith-approach-25l-backpack~a~486kv_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mountainsmith-approach-25l-backpack~a~486kv_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Dark Camo",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/486kv-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/mountainsmith-approach-25l-backpack-in-dark-camo~p~486kv_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . The perfect go-to for commutes, jaunts across campus and quick ascents to the summit, Mountainsmith's Approach 25L backpack makes a handy dual-panel loader bag for both weekdays and adventure-filled weekends.",
+ "SuggestedRetailPrice": 89.95,
+ "Brand": {
+ "Id": "13540",
+ "Url": "/api/1.0/brand/13540/",
+ "ProductsUrl": "/api/1.0/products/mountainsmith~b~13540/",
+ "LogoSrc": "https://i.stpost.com/mountainsmith-approach-25l-backpack~b~13540~160x100.jpg",
+ "Name": "Mountainsmith"
+ },
+ "ListPrice": 43.0,
+ "FinalPrice": 43.0
+ },
+ {
+ "Id": "848HW",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/848hw/",
+ "WebUrl": "https://www.sierra.com/product/bounce/848hw/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848hw/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/848hw/",
+ "ReviewCount": 1,
+ "AverageRating": 2.0
+ },
+ "NameWithoutBrand": "Stir 18L Backpack",
+ "Name": "Thule Stir 18L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-stir-18l-backpack-in-dark-shadow~p~848hw_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-stir-18l-backpack-in-dark-shadow~p~848hw_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-stir-18l-backpack-in-dark-shadow~p~848hw_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-stir-18l-backpack-in-dark-shadow~p~848hw_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-18l-backpack~a~848hw_2~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-18l-backpack~a~848hw_3~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-18l-backpack~a~848hw_4~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-18l-backpack~a~848hw_5~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-18l-backpack~a~848hw_6~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Dark Shadow",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848hw-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-18l-backpack-in-dark-shadow~p~848hw_01~160.jpg"
+ },
+ {
+ "ColorCode": "03",
+ "ColorName": "Fjord",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848hw-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-18l-backpack-in-fjord~p~848hw_03~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Thule's Stir 18L backpack comfortably carries all your things over the mountains or around town in light, durable fabric and an ergonomic design. The padded, mesh-lined shoulder straps feature cutouts for added breathability, plus quick-access loops, a stretchy zip pocket and a removable sternum clip.",
+ "SuggestedRetailPrice": 80.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-stir-18l-backpack~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 49.99,
+ "FinalPrice": 49.99
+ },
+ {
+ "Id": "897XU",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/897xu/",
+ "WebUrl": "https://www.sierra.com/product/bounce/897xu/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/897xu/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/897xu/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Hover 50L Backpack - Internal Frame",
+ "Name": "Mystery Ranch Hover 50L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame-in-adobe~p~897xu_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame-in-adobe~p~897xu_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame-in-adobe~p~897xu_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame-in-adobe~p~897xu_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame~a~897xu_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame~a~897xu_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame~a~897xu_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["M", "L", "S", "XL"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Adobe",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/897xu-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame-in-adobe~p~897xu_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Mystery Ranch's Hover 50L backpack is a spacious and comfortable pack for long hikes and short backpacking trips, offering a breathable Hover system that allows air flow between your back and the pack, ample padding through the back and hips, and plenty of room for all your gear.",
+ "SuggestedRetailPrice": 240.0,
+ "Brand": {
+ "Id": "37083",
+ "Url": "/api/1.0/brand/37083/",
+ "ProductsUrl": "/api/1.0/products/mystery-ranch~b~37083/",
+ "LogoSrc": "https://i.stpost.com/mystery-ranch-hover-50l-backpack-internal-frame~b~37083~160x100.jpg",
+ "Name": "Mystery Ranch"
+ },
+ "ListPrice": 179.99,
+ "FinalPrice": 179.99
+ },
+ {
+ "Id": "8439K",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/8439k/",
+ "WebUrl": "https://www.sierra.com/product/bounce/8439k/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/8439k/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/8439k/",
+ "ReviewCount": 8,
+ "AverageRating": 4.75
+ },
+ "NameWithoutBrand": "ACT Lite 60+10 SL Backpack - Internal Frame (For Women)",
+ "Name": "Deuter ACT Lite 60+10 SL Backpack - Internal Frame (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~8439k_04~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~8439k_04~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~8439k_04~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~8439k_04~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "04",
+ "ColorName": "Pine/Moss",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/8439k-04.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women-in-pine-moss~p~8439k_04~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . The customizable fit and multiple storage compartments in the Deuter ACT Lite 60+ 10 SL backpack make it an outstanding performer on weekend backpacking trips and for adventure travel.",
+ "SuggestedRetailPrice": 169.99,
+ "Brand": {
+ "Id": "4061",
+ "Url": "/api/1.0/brand/4061/",
+ "ProductsUrl": "/api/1.0/products/deuter~b~4061/",
+ "LogoSrc": "https://i.stpost.com/deuter-act-lite-60-plus-10-sl-backpack-internal-frame-for-women~b~4061~160x100.jpg",
+ "Name": "Deuter"
+ },
+ "ListPrice": 119.99,
+ "FinalPrice": 119.99
+ },
+ {
+ "Id": "15FMM",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/15fmm/",
+ "WebUrl": "https://www.sierra.com/product/bounce/15fmm/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/15fmm/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/15fmm/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Happy Camper Mission 25 L Backpack",
+ "Name": "DaKine Happy Camper Mission 25 L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack-in-windells-speed-team~p~15fmm_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack-in-windells-speed-team~p~15fmm_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack-in-windells-speed-team~p~15fmm_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack-in-windells-speed-team~p~15fmm_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack~a~15fmm_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Windells Speed Team",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/15fmm-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack-in-windells-speed-team~p~15fmm_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . From camping trips to mountain fun, this DaKine Happy Camper Mission backpack will be your happy companion through every season of the year. It includes plenty of pockets for essentials, a laptop sleeve, vertical snowboard carry straps and a stowable lunch box that can also be worn as a hip pack.",
+ "SuggestedRetailPrice": 115.0,
+ "Brand": {
+ "Id": "3895",
+ "Url": "/api/1.0/brand/3895/",
+ "ProductsUrl": "/api/1.0/products/dakine~b~3895/",
+ "LogoSrc": "https://i.stpost.com/dakine-happy-camper-mission-25-l-backpack~b~3895~160x100.jpg",
+ "Name": "DaKine"
+ },
+ "ListPrice": 39.99,
+ "FinalPrice": 39.99
+ },
+ {
+ "Id": "926WF",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/926wf/",
+ "WebUrl": "https://www.sierra.com/product/bounce/926wf/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/926wf/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/926wf/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Peregrine 1800 Tactical Backpack",
+ "Name": "Kelty Peregrine 1800 Tactical Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack-in-coyote-brown~p~926wf_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack-in-coyote-brown~p~926wf_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack-in-coyote-brown~p~926wf_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack-in-coyote-brown~p~926wf_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack~a~926wf_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack~a~926wf_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack~a~926wf_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Coyote Brown",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/926wf-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack-in-coyote-brown~p~926wf_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . You'll be ready for adventures on the trail or in the city with Kelty's Peregrine 1800 tactical backpack, featuring three zip compartments with plenty of storage space, an inner sleeve that can accommodate a hydration reservoir or a laptop, and shoulder and back cushioning for all-day comfort.",
+ "SuggestedRetailPrice": 90.0,
+ "Brand": {
+ "Id": "1105",
+ "Url": "/api/1.0/brand/1105/",
+ "ProductsUrl": "/api/1.0/products/kelty~b~1105/",
+ "LogoSrc": "https://i.stpost.com/kelty-peregrine-1800-tactical-backpack~b~1105~160x100.jpg",
+ "Name": "Kelty"
+ },
+ "ListPrice": 59.99,
+ "FinalPrice": 59.99
+ },
+ {
+ "Id": "445FJ",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/445fj/",
+ "WebUrl": "https://www.sierra.com/product/bounce/445fj/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/445fj/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/445fj/",
+ "ReviewCount": 1,
+ "AverageRating": 5.0
+ },
+ "NameWithoutBrand": "Siro 50L Backpack - Internal Frame",
+ "Name": "Kelty Siro 50L Backpack - Internal Frame",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame-in-woodbine~p~445fj_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame-in-woodbine~p~445fj_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame-in-woodbine~p~445fj_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame-in-woodbine~p~445fj_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame~a~445fj_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S/M", "M/L"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Woodbine",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/445fj-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame-in-woodbine~p~445fj_01~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Black",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/445fj-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame-in-black~p~445fj_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Overstock . Lightweight and streamlined, Kelty's 45L Siro backpack offers a FeatherFIT suspension system with a suspended AirMesh back panel and integrated lumbar support to keep you in comfort on the long haul.",
+ "SuggestedRetailPrice": 199.95,
+ "Brand": {
+ "Id": "1105",
+ "Url": "/api/1.0/brand/1105/",
+ "ProductsUrl": "/api/1.0/products/kelty~b~1105/",
+ "LogoSrc": "https://i.stpost.com/kelty-siro-50l-backpack-internal-frame~b~1105~160x100.jpg",
+ "Name": "Kelty"
+ },
+ "ListPrice": 79.0,
+ "FinalPrice": 79.0
+ },
+ {
+ "Id": "896MM",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/896mm/",
+ "WebUrl": "https://www.sierra.com/product/bounce/896mm/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896mm/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/896mm/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Alpine Ascent 25L Backpack",
+ "Name": "Lowe Alpine Alpine Ascent 25L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack-in-onyx~p~896mm_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack-in-onyx~p~896mm_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack-in-onyx~p~896mm_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack-in-onyx~p~896mm_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack~a~896mm_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack~a~896mm_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Onyx",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mm-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack-in-onyx~p~896mm_02~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Fire",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mm-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack-in-fire~p~896mm_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Whatever season you climb in, Lowe Alpine's Alpine Ascent 25L backpack has you covered with plenty of room for your gear, and features gear loops, rope holder and a Headlocker ice axe attachment system.",
+ "SuggestedRetailPrice": 130.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-alpine-ascent-25l-backpack~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 59.0,
+ "FinalPrice": 59.0
+ },
+ {
+ "Id": "20FWP",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/20fwp/",
+ "WebUrl": "https://www.sierra.com/product/bounce/20fwp/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/20fwp/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/20fwp/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Fovero 85 Pack",
+ "Name": "The North Face Fovero 85 Pack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/the-north-face-fovero-85-pack-in-tnf-black-high-rise-grey~p~20fwp_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/the-north-face-fovero-85-pack-in-tnf-black-high-rise-grey~p~20fwp_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/the-north-face-fovero-85-pack-in-tnf-black-high-rise-grey~p~20fwp_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-fovero-85-pack-in-tnf-black-high-rise-grey~p~20fwp_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-fovero-85-pack~a~20fwp_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-fovero-85-pack~a~20fwp_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["S/M"] },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Tnf Black/High Rise Grey",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/20fwp-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-fovero-85-pack-in-tnf-black-high-rise-grey~p~20fwp_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . The North Face's Fovero 85 pack will be your pack of choice for your next backcountry adventure with its OPTIFIT suspension and durable ripstop nylon construction.",
+ "SuggestedRetailPrice": 250.0,
+ "Brand": {
+ "Id": "1440",
+ "Url": "/api/1.0/brand/1440/",
+ "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
+ "LogoSrc": "https://i.stpost.com/the-north-face-fovero-85-pack~b~1440~160x100.jpg",
+ "Name": "The North Face"
+ },
+ "ListPrice": 179.99,
+ "FinalPrice": 179.99
+ },
+ {
+ "Id": "16DXP",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/16dxp/",
+ "WebUrl": "https://www.sierra.com/product/bounce/16dxp/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16dxp/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/16dxp/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Speedfit 28 L Backpack",
+ "Name": "Dynafit Speedfit 28 L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/dynafit-speedfit-28-l-backpack-in-black-neo-yellow~p~16dxp_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/dynafit-speedfit-28-l-backpack-in-black-neo-yellow~p~16dxp_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/dynafit-speedfit-28-l-backpack-in-black-neo-yellow~p~16dxp_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/dynafit-speedfit-28-l-backpack-in-black-neo-yellow~p~16dxp_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/dynafit-speedfit-28-l-backpack~a~16dxp_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/dynafit-speedfit-28-l-backpack~a~16dxp_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/dynafit-speedfit-28-l-backpack~a~16dxp_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Black/Neo Yellow",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16dxp-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/dynafit-speedfit-28-l-backpack-in-black-neo-yellow~p~16dxp_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Be seen in low-light conditions on the mountain with Dynafit's Speedfit backpack, featuring a bright LED light band at the bottom of the pack.",
+ "SuggestedRetailPrice": 120.0,
+ "Brand": {
+ "Id": "1364",
+ "Url": "/api/1.0/brand/1364/",
+ "ProductsUrl": "/api/1.0/products/dynafit~b~1364/",
+ "LogoSrc": "https://i.stpost.com/dynafit-speedfit-28-l-backpack~b~1364~160x100.jpg",
+ "Name": "Dynafit"
+ },
+ "ListPrice": 69.99,
+ "FinalPrice": 69.99
+ },
+ {
+ "Id": "848HV",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/848hv/",
+ "WebUrl": "https://www.sierra.com/product/bounce/848hv/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848hv/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/848hv/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Stir 15L Backpack",
+ "Name": "Thule Stir 15L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-stir-15l-backpack-in-fjord~p~848hv_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-stir-15l-backpack-in-fjord~p~848hv_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-stir-15l-backpack-in-fjord~p~848hv_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-stir-15l-backpack-in-fjord~p~848hv_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-15l-backpack~a~848hv_2~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-15l-backpack~a~848hv_3~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-15l-backpack~a~848hv_4~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-15l-backpack~a~848hv_5~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-15l-backpack~a~848hv_6~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-15l-backpack~a~848hv_7~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Fjord",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848hv-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-15l-backpack-in-fjord~p~848hv_02~160.jpg"
+ },
+ {
+ "ColorCode": "03",
+ "ColorName": "Dark Forest",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848hv-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-15l-backpack-in-dark-forest~p~848hv_03~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . With its 15-liter capacity and smart suspension, the Thule Stir 15L backpack is nicely sized for day hikes and other short trips.",
+ "SuggestedRetailPrice": 50.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-stir-15l-backpack~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 34.99,
+ "FinalPrice": 34.99
+ },
+ {
+ "Id": "18DUD",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/18dud/",
+ "WebUrl": "https://www.sierra.com/product/bounce/18dud/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/18dud/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/18dud/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Aircontact 45L + 10 Backpack (For Men and Women)",
+ "Name": "Deuter Aircontact 45L + 10 Backpack (For Men and Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women-in-cranberry-graphite~p~18dud_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women-in-cranberry-graphite~p~18dud_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women-in-cranberry-graphite~p~18dud_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women-in-cranberry-graphite~p~18dud_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women~a~18dud_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Cranberry/Graphite",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/18dud-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women-in-cranberry-graphite~p~18dud_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Deuter's Aircontact 48L+10 backpack comfortably carries your supplies for a weekend full of trail exploring. Its Aircontact back-system paired with S-shaped shoulder straps allow you to fine-tune your fit for optimal load distribution and breathable comfort even when fully loaded.",
+ "SuggestedRetailPrice": 220.0,
+ "Brand": {
+ "Id": "4061",
+ "Url": "/api/1.0/brand/4061/",
+ "ProductsUrl": "/api/1.0/products/deuter~b~4061/",
+ "LogoSrc": "https://i.stpost.com/deuter-aircontact-45l--plus--10-backpack-for-men-and-women~b~4061~160x100.jpg",
+ "Name": "Deuter"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "660MY",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/660my/",
+ "WebUrl": "https://www.sierra.com/product/bounce/660my/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/660my/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/660my/",
+ "ReviewCount": 3,
+ "AverageRating": 4.33
+ },
+ "NameWithoutBrand": "Competition 65+10L Backpack - 75L",
+ "Name": "Deuter Competition 65+10L Backpack - 75L",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/deuter-competition-65-plus-10l-backpack-75l-in-pine-granite~p~660my_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/deuter-competition-65-plus-10l-backpack-75l-in-pine-granite~p~660my_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/deuter-competition-65-plus-10l-backpack-75l-in-pine-granite~p~660my_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/deuter-competition-65-plus-10l-backpack-75l-in-pine-granite~p~660my_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Pine/Granite",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/660my-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/deuter-competition-65-plus-10l-backpack-75l-in-pine-granite~p~660my_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Deep wilderness treks require optimal comfort and space, so put on the Deuter Competition backpack and enjoy adjustable back length that allows for perfect shoulder and hip placement.",
+ "SuggestedRetailPrice": 179.99,
+ "Brand": {
+ "Id": "4061",
+ "Url": "/api/1.0/brand/4061/",
+ "ProductsUrl": "/api/1.0/products/deuter~b~4061/",
+ "LogoSrc": "https://i.stpost.com/deuter-competition-65-plus-10l-backpack-75l~b~4061~160x100.jpg",
+ "Name": "Deuter"
+ },
+ "ListPrice": 99.0,
+ "FinalPrice": 99.0
+ },
+ {
+ "Id": "848HX",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/848hx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/848hx/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848hx/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/848hx/",
+ "ReviewCount": 1,
+ "AverageRating": 4.0
+ },
+ "NameWithoutBrand": "Stir 35L Backpack (For Men)",
+ "Name": "Thule Stir 35L Backpack (For Men)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-stir-35l-backpack-for-men-in-dark-forest~p~848hx_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-stir-35l-backpack-for-men-in-dark-forest~p~848hx_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-stir-35l-backpack-for-men-in-dark-forest~p~848hx_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-stir-35l-backpack-for-men-in-dark-forest~p~848hx_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-35l-backpack-for-men~a~848hx_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-35l-backpack-for-men~a~848hx_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-stir-35l-backpack-for-men~a~848hx_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Dark Forest",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848hx-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-35l-backpack-for-men-in-dark-forest~p~848hx_02~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Dark Shadow",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848hx-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-stir-35l-backpack-for-men-in-dark-shadow~p~848hx_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . The Thule Stir 35L backpack is a superb midsize option for overnight backpacking, climbing and other outdoor sports that require larger amounts of gear than daypacks can handle.",
+ "SuggestedRetailPrice": 120.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-stir-35l-backpack-for-men~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 69.99,
+ "FinalPrice": 69.99
+ },
+ {
+ "Id": "848MH",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/848mh/",
+ "WebUrl": "https://www.sierra.com/product/bounce/848mh/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/848mh/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/848mh/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Versant 70L Backpack - Internal Frame (For Women)",
+ "Name": "Thule Versant 70L Backpack - Internal Frame (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mh_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mh_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mh_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mh_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women~a~848mh_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women~a~848mh_3~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women~a~848mh_4~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women~a~848mh_5~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Mazerine Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848mh-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women-in-mazerine-blue~p~848mh_02~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Deep Teal",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/848mh-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women-in-deep-teal~p~848mh_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . Thule's Versant 70L backpack is spacious and supportive enough for multi-day backcountry trips and backpacker travel. The female-specific design includes waistbelt and torso adjustability for customizable comfort, access to the spacious main compartment from the top and front, and a three-quarter rain cover with a waterproof bottom liner to protect your gear from the elements.",
+ "SuggestedRetailPrice": 215.0,
+ "Brand": {
+ "Id": "2757",
+ "Url": "/api/1.0/brand/2757/",
+ "ProductsUrl": "/api/1.0/products/thule~b~2757/",
+ "LogoSrc": "https://i.stpost.com/thule-versant-70l-backpack-internal-frame-for-women~b~2757~160x100.jpg",
+ "Name": "Thule"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "896MW",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/896mw/",
+ "WebUrl": "https://www.sierra.com/product/bounce/896mw/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896mw/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/896mw/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Kulu 65L Backpack",
+ "Name": "Lowe Alpine Kulu 65L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mw_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mw_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mw_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mw_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~a~896mw_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~a~896mw_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~a~896mw_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Magnetite",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mw-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mw_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . When your next adventure is a plane ride away, this Lowe Alpine Kulu 65L backpack is the perfect travel companion. With its durable construction, expandable lid, adjustable AirMesh back, abundant gear storage and versatile Travel FlipBelt technology, this backpack is designed to ease the stress of travel to remote locations.",
+ "SuggestedRetailPrice": 225.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 79.0,
+ "FinalPrice": 79.0
+ },
+ {
+ "Id": "18DUA",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/18dua/",
+ "WebUrl": "https://www.sierra.com/product/bounce/18dua/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/18dua/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/18dua/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "AC Lite 18 Backpack - Internal Frame (For Men and Women)",
+ "Name": "Deuter AC Lite 18 Backpack - Internal Frame (For Men and Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dua_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dua_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dua_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dua_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women~a~18dua_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women~a~18dua_3~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women~a~18dua_4~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women~a~18dua_5~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Cranberry",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/18dua-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dua_02~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Steel",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/18dua-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women-in-steel~p~18dua_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Enjoy a day on the trail with Deuter's AC Lite 18 backpack, made from durable, water-resistant ripstop fabric with a breathable Aircomfort mesh back system, ergonomic design and plenty of storage space for your gear and other essentials.",
+ "SuggestedRetailPrice": 80.0,
+ "Brand": {
+ "Id": "4061",
+ "Url": "/api/1.0/brand/4061/",
+ "ProductsUrl": "/api/1.0/products/deuter~b~4061/",
+ "LogoSrc": "https://i.stpost.com/deuter-ac-lite-18-backpack-internal-frame-for-men-and-women~b~4061~160x100.jpg",
+ "Name": "Deuter"
+ },
+ "ListPrice": 49.99,
+ "FinalPrice": 49.99
+ },
+ {
+ "Id": "926WH",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/926wh/",
+ "WebUrl": "https://www.sierra.com/product/bounce/926wh/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/926wh/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/926wh/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Map 3500 Tactical 38L Backpack",
+ "Name": "Kelty Map 3500 Tactical 38L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack-in-black~p~926wh_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack-in-black~p~926wh_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack-in-black~p~926wh_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack-in-black~p~926wh_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack~a~926wh_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack~a~926wh_3~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack~a~926wh_4~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Black",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/926wh-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack-in-black~p~926wh_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . This Kelty Map 3500 Tactical backpack hauls your essentials around the block or around the world comfortably and securely.",
+ "SuggestedRetailPrice": 120.0,
+ "Brand": {
+ "Id": "1105",
+ "Url": "/api/1.0/brand/1105/",
+ "ProductsUrl": "/api/1.0/products/kelty~b~1105/",
+ "LogoSrc": "https://i.stpost.com/kelty-map-3500-tactical-38l-backpack~b~1105~160x100.jpg",
+ "Name": "Kelty"
+ },
+ "ListPrice": 79.99,
+ "FinalPrice": 79.99
+ },
+ {
+ "Id": "19JDW",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/19jdw/",
+ "WebUrl": "https://www.sierra.com/product/bounce/19jdw/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/19jdw/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/19jdw/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Hydro Trail 10L Hydration Backpack - 3L Reservoir",
+ "Name": "ALPS Mountaineering Hydro Trail 10L Hydration Backpack - 3L Reservoir",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~19jdw_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~19jdw_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~19jdw_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~19jdw_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Gray/Citrus",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/19jdw-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~19jdw_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Whether you're hiking, mountain biking or climbing, ALPS Mountaineering's Hydra Trail hydration pack makes it easy to stay hydrated while you're on the trail. With separate compartments and a ventilating 3D mesh suspension, it comfortably carries everything you need.",
+ "SuggestedRetailPrice": 80.0,
+ "Brand": {
+ "Id": "1156",
+ "Url": "/api/1.0/brand/1156/",
+ "ProductsUrl": "/api/1.0/products/alps-mountaineering~b~1156/",
+ "LogoSrc": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir~b~1156~160x100.jpg",
+ "Name": "ALPS Mountaineering"
+ },
+ "ListPrice": 49.99,
+ "FinalPrice": 49.99
+ },
+ {
+ "Id": "896MV",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/896mv/",
+ "WebUrl": "https://www.sierra.com/product/bounce/896mv/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/896mv/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/896mv/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Kulu 65L Backpack",
+ "Name": "Lowe Alpine Kulu 65L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mv_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mv_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mv_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mv_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~a~896mv_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~a~896mv_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Magnetite",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/896mv-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack-in-magnetite~p~896mv_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . When your next adventure is a plane ride away, this Lowe Alpine Kulu 65L backpack is the perfect travel companion. With its durable construction, expandable lid, adjustable AirMesh back, abundant gear storage and versatile Travel FlipBelt technology, this backpack is designed to ease the stress of travel to remote locations.",
+ "SuggestedRetailPrice": 225.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-kulu-65l-backpack~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 79.0,
+ "FinalPrice": 79.0
+ },
+ {
+ "Id": "895DX",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/895dx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/895dx/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/895dx/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/895dx/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "AirZone Velo 25L Backpack",
+ "Name": "Lowe Alpine AirZone Velo 25L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-airzone-velo-25l-backpack-in-marine~p~895dx_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-airzone-velo-25l-backpack-in-marine~p~895dx_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-airzone-velo-25l-backpack-in-marine~p~895dx_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-airzone-velo-25l-backpack-in-marine~p~895dx_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Marine",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/895dx-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-airzone-velo-25l-backpack-in-marine~p~895dx_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . A great choice for days in the saddle, Lowe Alpine's AirZone Velo 25L backpack is made with super-durable TrailShield fabric, AirZone mesh for maximized airflow and a front pocket with a bike tool organizer for quick access if something should happen.",
+ "SuggestedRetailPrice": 140.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-airzone-velo-25l-backpack~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 49.0,
+ "FinalPrice": 49.0
+ },
+ {
+ "Id": "16DXR",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/16dxr/",
+ "WebUrl": "https://www.sierra.com/product/bounce/16dxr/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16dxr/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/16dxr/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Speed 28 L Backpack",
+ "Name": "Dynafit Speed 28 L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/dynafit-speed-28-l-backpack-in-carbon-black~p~16dxr_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/dynafit-speed-28-l-backpack-in-carbon-black~p~16dxr_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/dynafit-speed-28-l-backpack-in-carbon-black~p~16dxr_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/dynafit-speed-28-l-backpack-in-carbon-black~p~16dxr_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/dynafit-speed-28-l-backpack~a~16dxr_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/dynafit-speed-28-l-backpack~a~16dxr_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Carbon/Black",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16dxr-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/dynafit-speed-28-l-backpack-in-carbon-black~p~16dxr_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Dynafit's Speed backpack features a roomy compartment with a full-wrap zipper, an anatomical cut, breathable straps and an air mesh back panel system that makes it ideal for backcountry tours.",
+ "SuggestedRetailPrice": 110.0,
+ "Brand": {
+ "Id": "1364",
+ "Url": "/api/1.0/brand/1364/",
+ "ProductsUrl": "/api/1.0/products/dynafit~b~1364/",
+ "LogoSrc": "https://i.stpost.com/dynafit-speed-28-l-backpack~b~1364~160x100.jpg",
+ "Name": "Dynafit"
+ },
+ "ListPrice": 59.99,
+ "FinalPrice": 59.99
+ },
+ {
+ "Id": "419FF",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/419ff/",
+ "WebUrl": "https://www.sierra.com/product/bounce/419ff/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/419ff/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/419ff/",
+ "ReviewCount": 5,
+ "AverageRating": 3.8
+ },
+ "NameWithoutBrand": "Red Wall 8L Hydration Backpack - 70 oz.",
+ "Name": "Stansport Red Wall 8L Hydration Backpack - 70 oz.",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz-in-black-gray~p~419ff_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz-in-black-gray~p~419ff_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz-in-black-gray~p~419ff_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz-in-black-gray~p~419ff_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz~a~419ff_2~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Black/Gray",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/419ff-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz-in-black-gray~p~419ff_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . A great little hydration pack for day hikes and biking, the Stansport Red Wall 8L hydration backpack has 8 liters of total capacity, which includes a 2-liter hydration reservoir with a no-leak bite valve.",
+ "SuggestedRetailPrice": 29.99,
+ "Brand": {
+ "Id": "33483",
+ "Url": "/api/1.0/brand/33483/",
+ "ProductsUrl": "/api/1.0/products/stansport~b~33483/",
+ "LogoSrc": "https://i.stpost.com/stansport-red-wall-8l-hydration-backpack-70-oz~b~33483~160x100.jpg",
+ "Name": "Stansport"
+ },
+ "ListPrice": 19.99,
+ "FinalPrice": 19.99
+ },
+ {
+ "Id": "936GT",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/936gt/",
+ "WebUrl": "https://www.sierra.com/product/bounce/936gt/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/936gt/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/936gt/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Hydro Trail 10L Hydration Backpack - 3L Reservoir",
+ "Name": "ALPS Mountaineering Hydro Trail 10L Hydration Backpack - 3L Reservoir",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~936gt_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~936gt_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~936gt_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~936gt_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir~a~936gt_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir~a~936gt_3~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Gray/Citrus",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/936gt-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-citrus~p~936gt_02~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Gray/Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/936gt-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir-in-gray-blue~p~936gt_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Whether you're hiking, mountain biking or climbing, ALPS Mountaineering's Hydra Trail hydration pack makes it easy to stay hydrated while you're on the trail. With separate compartments and a ventilating 3D mesh suspension, it comfortably carries everything you need.",
+ "SuggestedRetailPrice": 80.0,
+ "Brand": {
+ "Id": "1156",
+ "Url": "/api/1.0/brand/1156/",
+ "ProductsUrl": "/api/1.0/products/alps-mountaineering~b~1156/",
+ "LogoSrc": "https://i.stpost.com/alps-mountaineering-hydro-trail-10l-hydration-backpack-3l-reservoir~b~1156~160x100.jpg",
+ "Name": "ALPS Mountaineering"
+ },
+ "ListPrice": 49.99,
+ "FinalPrice": 49.99
+ },
+ {
+ "Id": "895FA",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/895fa/",
+ "WebUrl": "https://www.sierra.com/product/bounce/895fa/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/895fa/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/895fa/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "AirZone Velo 30L Backpack",
+ "Name": "Lowe Alpine AirZone Velo 30L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack-in-black~p~895fa_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack-in-black~p~895fa_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack-in-black~p~895fa_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack-in-black~p~895fa_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack~a~895fa_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Black",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/895fa-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack-in-black~p~895fa_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . A great choice for days in the saddle or the trail, Lowe Alpine's AirZone Velo 30L backpack is made with super-durable TriShield Dura fabric, AirZone mesh for maximized airflow and a front pocket with a bike tool organizer for quick access if something should happen.",
+ "SuggestedRetailPrice": 140.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-airzone-velo-30l-backpack~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 49.0,
+ "FinalPrice": 49.0
+ },
+ {
+ "Id": "20DPX",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/20dpx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/20dpx/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/20dpx/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/20dpx/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Hydra 38 Backpack (For Women)",
+ "Name": "The North Face Hydra 38 Backpack (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women-in-new-taupe-green-four-leaf-clover~p~20dpx_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women-in-new-taupe-green-four-leaf-clover~p~20dpx_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women-in-new-taupe-green-four-leaf-clover~p~20dpx_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women-in-new-taupe-green-four-leaf-clover~p~20dpx_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women~a~20dpx_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women~a~20dpx_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": { "SIZE": ["XS/S"] },
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "New Taupe Green/Four Leaf Clover",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/20dpx-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women-in-new-taupe-green-four-leaf-clover~p~20dpx_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . From day hikes to overnight trips, The North Face's Hydra 38 backpack will hold all your gear without weighing you down. With an ultralight, durable aluminum frame and FlashDry® technology, you can comfortably carry this pack through any terrain.",
+ "SuggestedRetailPrice": 150.0,
+ "Brand": {
+ "Id": "1440",
+ "Url": "/api/1.0/brand/1440/",
+ "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
+ "LogoSrc": "https://i.stpost.com/the-north-face-hydra-38-backpack-for-women~b~1440~160x100.jpg",
+ "Name": "The North Face"
+ },
+ "ListPrice": 99.99,
+ "FinalPrice": 99.99
+ },
+ {
+ "Id": "16DXT",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/16dxt/",
+ "WebUrl": "https://www.sierra.com/product/bounce/16dxt/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16dxt/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/16dxt/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Speed 20 L Backpack",
+ "Name": "Dynafit Speed 20 L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/dynafit-speed-20-l-backpack-in-black-cactus~p~16dxt_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/dynafit-speed-20-l-backpack-in-black-cactus~p~16dxt_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/dynafit-speed-20-l-backpack-in-black-cactus~p~16dxt_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/dynafit-speed-20-l-backpack-in-black-cactus~p~16dxt_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/dynafit-speed-20-l-backpack~a~16dxt_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/dynafit-speed-20-l-backpack~a~16dxt_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Black/Cactus",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16dxt-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/dynafit-speed-20-l-backpack-in-black-cactus~p~16dxt_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Made for speed touring ascents, Dynafit's Speed backpack is ultralight-yet-roomy, with plenty of space for safety equipment, and the anatomical design with an airmesh back ensure all-day comfort.",
+ "SuggestedRetailPrice": 100.0,
+ "Brand": {
+ "Id": "1364",
+ "Url": "/api/1.0/brand/1364/",
+ "ProductsUrl": "/api/1.0/products/dynafit~b~1364/",
+ "LogoSrc": "https://i.stpost.com/dynafit-speed-20-l-backpack~b~1364~160x100.jpg",
+ "Name": "Dynafit"
+ },
+ "ListPrice": 59.99,
+ "FinalPrice": 59.99
+ },
+ {
+ "Id": "18DTY",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/18dty/",
+ "WebUrl": "https://www.sierra.com/product/bounce/18dty/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/18dty/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/18dty/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "AC Lite 26L Backpack - Internal Frame (For Men and Women)",
+ "Name": "Deuter AC Lite 26L Backpack - Internal Frame (For Men and Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dty_03~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dty_03~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dty_03~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dty_03~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women~a~18dty_2~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women~a~18dty_3~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "03",
+ "ColorName": "Cranberry",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/18dty-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women-in-cranberry~p~18dty_03~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Deuter's AC Lite 26L backpack comfortably carries your supplies for a weekend full of trail exploring. Its Aircomfort three-sided back ventilation system allows you to stay drier longer on the hike.",
+ "SuggestedRetailPrice": 85.0,
+ "Brand": {
+ "Id": "4061",
+ "Url": "/api/1.0/brand/4061/",
+ "ProductsUrl": "/api/1.0/products/deuter~b~4061/",
+ "LogoSrc": "https://i.stpost.com/deuter-ac-lite-26l-backpack-internal-frame-for-men-and-women~b~4061~160x100.jpg",
+ "Name": "Deuter"
+ },
+ "ListPrice": 49.99,
+ "FinalPrice": 49.99
+ },
+ {
+ "Id": "665HT",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/665ht/",
+ "WebUrl": "https://www.sierra.com/product/bounce/665ht/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/665ht/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/665ht/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Amber Adjustable 34L Backpack - Internal Frame (For Women)",
+ "Name": "Gregory Amber Adjustable 34L Backpack - Internal Frame (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women-in-teal-grey~p~665ht_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women-in-teal-grey~p~665ht_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women-in-teal-grey~p~665ht_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women-in-teal-grey~p~665ht_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women~a~665ht_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Teal Grey",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/665ht-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women-in-teal-grey~p~665ht_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Gregory's Amber 34L backpack is made for long days out or light overnight trips. The streamlined design and internal wire frame give it the long-distance comfort and load management required for extended exploration.",
+ "SuggestedRetailPrice": 119.99,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-amber-adjustable-34l-backpack-internal-frame-for-women~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 89.99,
+ "FinalPrice": 89.99
+ },
+ {
+ "Id": "877FF",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/877ff/",
+ "WebUrl": "https://www.sierra.com/product/bounce/877ff/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/877ff/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/877ff/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Amber 60L Backpack - Internal Frame (For Women)",
+ "Name": "Gregory Amber 60L Backpack - Internal Frame (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women-in-chili-pepper-red~p~877ff_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women-in-chili-pepper-red~p~877ff_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women-in-chili-pepper-red~p~877ff_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women-in-chili-pepper-red~p~877ff_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women~a~877ff_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women~a~877ff_3~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women~a~877ff_4~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Chili Pepper Red",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/877ff-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women-in-chili-pepper-red~p~877ff_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Large enough for multi-day backcountry trips, Gregory's Amber 60 backpack capably manages large loads with a TrailFlex wishbone suspension.",
+ "SuggestedRetailPrice": 170.0,
+ "Brand": {
+ "Id": "7155",
+ "Url": "/api/1.0/brand/7155/",
+ "ProductsUrl": "/api/1.0/products/gregory~b~7155/",
+ "LogoSrc": "https://i.stpost.com/gregory-amber-60l-backpack-internal-frame-for-women~b~7155~160x100.jpg",
+ "Name": "Gregory"
+ },
+ "ListPrice": 119.99,
+ "FinalPrice": 119.99
+ },
+ {
+ "Id": "895FF",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/895ff/",
+ "WebUrl": "https://www.sierra.com/product/bounce/895ff/?filterString=s~backpacks%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/895ff/?filterString=s~backpacks%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/895ff/",
+ "ReviewCount": 0,
+ "AverageRating": 0.0
+ },
+ "NameWithoutBrand": "Ignite 15L Backpack",
+ "Name": "Lowe Alpine Ignite 15L Backpack",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack-in-auburn~p~895ff_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack-in-auburn~p~895ff_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack-in-auburn~p~895ff_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack-in-auburn~p~895ff_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack~a~895ff_2~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack~a~895ff_3~600.2.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack~a~895ff_4~600.1.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack~a~895ff_5~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Auburn",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/895ff-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack-in-auburn~p~895ff_01~160.jpg"
+ },
+ {
+ "ColorCode": "04",
+ "ColorName": "Denim",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/895ff-04.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack-in-denim~p~895ff_04~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . The perfect-sized pack for day hikes, Lowe Alpine's Ignite backpack features a large main compartment for holding your gear, Daisy chain lash points, and padded mesh shoulder straps for carrying comfortably.",
+ "SuggestedRetailPrice": 35.0,
+ "Brand": {
+ "Id": "1280",
+ "Url": "/api/1.0/brand/1280/",
+ "ProductsUrl": "/api/1.0/products/lowe-alpine~b~1280/",
+ "LogoSrc": "https://i.stpost.com/lowe-alpine-ignite-15l-backpack~b~1280~160x100.jpg",
+ "Name": "Lowe Alpine"
+ },
+ "ListPrice": 19.99,
+ "FinalPrice": 19.99
+ }
+ ]
+}
diff --git a/src/json/sleeping-bags.json b/src/json/sleeping-bags.json
index 6bf7a124..52030036 100644
--- a/src/json/sleeping-bags.json
+++ b/src/json/sleeping-bags.json
@@ -1,1236 +1,1206 @@
-{
- "Count": 58,
- "Page": 1,
- "PerPage": 24,
- "NextPageUrl": "/api/1.0/products/s~sleeping-bags/?page=2",
- "LastPageUrl": "/api/1.0/products/s~sleeping-bags/?page=3",
- "RefinementsUrl": "/api/1.0/refinements/search~sleeping-bags/",
- "Title": "Search for \"sleeping bags\" ",
- "Result": [
- {
- "Id": "927VJ",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/927vj/",
- "WebUrl": "https://www.sierra.com/product/bounce/927vj/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/927vj/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/927vj/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "20°F Pinole Sleeping Bag - Mummy (For Men and Women)",
- "Name": "Mountain Hardwear 20°F Pinole Sleeping Bag - Mummy (For Men and Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women-in-altitude-blue~p~927vj_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women-in-altitude-blue~p~927vj_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women-in-altitude-blue~p~927vj_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women-in-altitude-blue~p~927vj_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women~a~927vj_2~600.2.jpg"
- }
- ]
- },
- "SizesAvailable": {
- "ZIPPER": [
- "L"
- ]
- },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Altitude Blue",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/927vj-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women-in-altitude-blue~p~927vj_01~160.jpg"
- },
- {
- "ColorCode": "02",
- "ColorName": "Dark Army",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/927vj-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women-in-dark-army~p~927vj_02~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Excess . From spring to summer to fall, Mountain Hardwear's 20° F Pinole sleeping bag delivers away-from-home comfort with its Thermal.Q synthetic insulation, tailored hood for sealing in heat and comfort footbox for just-right wiggle room.",
- "SuggestedRetailPrice": 130,
- "Brand": {
- "Id": "13530",
- "Url": "/api/1.0/brand/13530/",
- "ProductsUrl": "/api/1.0/products/mountain-hardwear~b~13530/",
- "LogoSrc": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women~b~13530~160x100.jpg",
- "Name": "Mountain Hardwear"
- },
- "ListPrice": 99.99,
- "FinalPrice": 99.99
- },
- {
- "Id": "21KMF",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/21kmf/",
- "WebUrl": "https://www.sierra.com/product/bounce/21kmf/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/21kmf/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/21kmf/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "30°F Mavericks Double Wide Sleeping Bag - Square",
- "Name": "Marmot 30°F Mavericks Double Wide Sleeping Bag - Square",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square-in-golden-copper-dark-olive~p~21kmf_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square-in-golden-copper-dark-olive~p~21kmf_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square-in-golden-copper-dark-olive~p~21kmf_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square-in-golden-copper-dark-olive~p~21kmf_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square~a~21kmf_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {
- "ZIPPER": [
- "LH"
- ]
- },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Golden Copper/Dark Olive",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/21kmf-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square-in-golden-copper-dark-olive~p~21kmf_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Designed to share with your special someone, this Marmot Mavericks double wide sleeping bag also zips apart to become two individual bags. Fortified with SpiraFil synthetic insulation for optimal warmth and comfort on chilly nights.",
- "SuggestedRetailPrice": 212,
- "Brand": {
- "Id": "1308",
- "Url": "/api/1.0/brand/1308/",
- "ProductsUrl": "/api/1.0/products/marmot~b~1308/",
- "LogoSrc": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square~b~1308~160x100.jpg",
- "Name": "Marmot"
- },
- "ListPrice": 149.99,
- "FinalPrice": 149.99
- },
- {
- "Id": "640GU",
- "IsClearance": true,
- "IsNew": false,
- "Url": "/api/1.0/product/640gu/",
- "WebUrl": "https://www.sierra.com/product/bounce/640gu/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/640gu/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/640gu/",
- "ReviewCount": 1,
- "AverageRating": 1
- },
- "NameWithoutBrand": "SpeedValve NeoAir® Camper SV Sleeping Pad - Inflatable, Extra-Large",
- "Name": "Therm-a-Rest SpeedValve NeoAir® Camper SV Sleeping Pad - Inflatable, Extra-Large",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/therm-a-rest-speedvalve-neoair-camper-sv-sleeping-pad-inflatable-extra-large-in-blue~p~640gu_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/therm-a-rest-speedvalve-neoair-camper-sv-sleeping-pad-inflatable-extra-large-in-blue~p~640gu_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/therm-a-rest-speedvalve-neoair-camper-sv-sleeping-pad-inflatable-extra-large-in-blue~p~640gu_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/therm-a-rest-speedvalve-neoair-camper-sv-sleeping-pad-inflatable-extra-large-in-blue~p~640gu_01~600.jpg",
- "ExtraImages": null
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Blue",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/640gu-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/therm-a-rest-speedvalve-neoair-camper-sv-sleeping-pad-inflatable-extra-large-in-blue~p~640gu_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . Exceptionally compact, lightweight and with ultra-fast inflation and deflation, the Therm-A-Rest SpeedValve Camper SV sleeping pad is a deluxe base camp air mattress with NeoAir® construction for added warmth and stability.",
- "SuggestedRetailPrice": 129.99,
- "Brand": {
- "Id": "3177",
- "Url": "/api/1.0/brand/3177/",
- "ProductsUrl": "/api/1.0/products/therm-a-rest~b~3177/",
- "LogoSrc": "https://i.stpost.com/therm-a-rest-speedvalve-neoair-camper-sv-sleeping-pad-inflatable-extra-large~b~3177~160x100.jpg",
- "Name": "Therm-a-Rest"
- },
- "ListPrice": 49,
- "FinalPrice": 49
- },
- {
- "Id": "861PY",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/861py/",
- "WebUrl": "https://www.sierra.com/product/bounce/861py/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/861py/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/861py/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "50°F Rambler Sleeping Bag - Semi-Rectangular (For Men and Women)",
- "Name": "Kelty 50°F Rambler Sleeping Bag - Semi-Rectangular (For Men and Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-green-apple~p~861py_03~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-green-apple~p~861py_03~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-green-apple~p~861py_03~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-green-apple~p~861py_03~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women~a~861py_2~600.3.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women~a~861py_3~600.3.jpg"
- },
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women~a~861py_4~600.2.jpg"
- }
- ]
- },
- "SizesAvailable": {
- "LENGTH": [
- "REG"
- ],
- "ZIPPER": [
- "R"
- ]
- },
- "Colors": [
- {
- "ColorCode": "03",
- "ColorName": "Green Apple",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/861py-03.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-green-apple~p~861py_03~160.jpg"
- },
- {
- "ColorCode": "02",
- "ColorName": "Fire Orange",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/861py-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-fire-orange~p~861py_02~160.jpg"
- },
- {
- "ColorCode": "04",
- "ColorName": "Red Sand",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/861py-04.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-red-sand~p~861py_04~160.jpg"
- },
- {
- "ColorCode": "01",
- "ColorName": "Paradise Blue",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/861py-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-paradise-blue~p~861py_01~160.jpg"
- },
- {
- "ColorCode": "05",
- "ColorName": "Sycamore/Fire Orange",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/861py-05.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-sycamore-fire-orange~p~861py_05~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Kelty's 50°F Rambler sleeping bag features a semi-rectangular design that keeps you comfortably warm (or cool) in mild temperatures.",
- "SuggestedRetailPrice": 50,
- "Brand": {
- "Id": "1105",
- "Url": "/api/1.0/brand/1105/",
- "ProductsUrl": "/api/1.0/products/kelty~b~1105/",
- "LogoSrc": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women~b~1105~160x100.jpg",
- "Name": "Kelty"
- },
- "ListPrice": 34.99,
- "FinalPrice": 34.99
- },
- {
- "Id": "16PWY",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/16pwy/",
- "WebUrl": "https://www.sierra.com/product/bounce/16pwy/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16pwy/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/16pwy/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "Static V2 Sleeping Pad - Inflatable",
- "Name": "Klymit Static V2 Sleeping Pad - Inflatable",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable-in-green~p~16pwy_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable-in-green~p~16pwy_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable-in-green~p~16pwy_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable-in-green~p~16pwy_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable~a~16pwy_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Green",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16pwy-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable-in-green~p~16pwy_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Rest comfortably on the trail with Klymit's Static V2 sleeping pad, featuring a lightweight, compact design with ergonomic V-chambers that support your pressure points and maximize warmth.",
- "SuggestedRetailPrice": 55,
- "Brand": {
- "Id": "4173",
- "Url": "/api/1.0/brand/4173/",
- "ProductsUrl": "/api/1.0/products/klymit~b~4173/",
- "LogoSrc": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable~b~4173~160x100.jpg",
- "Name": "Klymit"
- },
- "ListPrice": 39.99,
- "FinalPrice": 39.99
- },
- {
- "Id": "14GVH",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/14gvh/",
- "WebUrl": "https://www.sierra.com/product/bounce/14gvh/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/14gvh/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/14gvh/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "20°F Kenosha Down Sleeping Bag - 650 Fill Power, Mummy (For Men and Women)",
- "Name": "Marmot 20°F Kenosha Down Sleeping Bag - 650 Fill Power, Mummy (For Men and Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women-in-green-lichen-green-gulch~p~14gvh_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women-in-green-lichen-green-gulch~p~14gvh_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women-in-green-lichen-green-gulch~p~14gvh_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women-in-green-lichen-green-gulch~p~14gvh_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women~a~14gvh_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {
- "ZIPPER": [
- "L"
- ]
- },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Green Lichen/Green Gulch",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/14gvh-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women-in-green-lichen-green-gulch~p~14gvh_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . Sleep under the stars with Marmot's Kenosha sleeping bag, fortified with 650 fill power down insulation for ultimate comfort and warmth.",
- "SuggestedRetailPrice": 260,
- "Brand": {
- "Id": "1308",
- "Url": "/api/1.0/brand/1308/",
- "ProductsUrl": "/api/1.0/products/marmot~b~1308/",
- "LogoSrc": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women~b~1308~160x100.jpg",
- "Name": "Marmot"
- },
- "ListPrice": 189.99,
- "FinalPrice": 189.99
- },
- {
- "Id": "621CP",
- "IsClearance": false,
- "IsNew": true,
- "Url": "/api/1.0/product/621cp/",
- "WebUrl": "https://www.sierra.com/product/bounce/621cp/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/621cp/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/621cp/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "30°F Trestles Elite Sleeping Bag (For Women)",
- "Name": "Marmot 30°F Trestles Elite Sleeping Bag (For Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/marmot-30-f-trestles-elite-sleeping-bag-for-women-in-turf-green-garden-green~p~621cp_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/marmot-30-f-trestles-elite-sleeping-bag-for-women-in-turf-green-garden-green~p~621cp_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/marmot-30-f-trestles-elite-sleeping-bag-for-women-in-turf-green-garden-green~p~621cp_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/marmot-30-f-trestles-elite-sleeping-bag-for-women-in-turf-green-garden-green~p~621cp_01~600.jpg",
- "ExtraImages": null
- },
- "SizesAvailable": {
- "HAND": [
- "LH"
- ]
- },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Turf Green/Garden Green",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/621cp-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/marmot-30-f-trestles-elite-sleeping-bag-for-women-in-turf-green-garden-green~p~621cp_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . Marmot's 30°F Trestles Elite sleeping bag promises to keep you toasty-warm in near-freezing weather with HL-ElixR® synthetic insulation that's a smart combination of three fibers to efficiently trap heat, maintain loft and feel soft and comfortable.",
- "SuggestedRetailPrice": 104.99,
- "Brand": {
- "Id": "1308",
- "Url": "/api/1.0/brand/1308/",
- "ProductsUrl": "/api/1.0/products/marmot~b~1308/",
- "LogoSrc": "https://i.stpost.com/marmot-30-f-trestles-elite-sleeping-bag-for-women~b~1308~160x100.jpg",
- "Name": "Marmot"
- },
- "ListPrice": 79.99,
- "FinalPrice": 79.99
- },
- {
- "Id": "10HGH",
- "IsClearance": false,
- "IsNew": true,
- "Url": "/api/1.0/product/10hgh/",
- "WebUrl": "https://www.sierra.com/product/bounce/10hgh/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/10hgh/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/10hgh/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "50°F Gormsson Sleeping Bag - Mummy, Long",
- "Name": "Nordisk 50°F Gormsson Sleeping Bag - Mummy, Long",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long-in-limoges-blue~p~10hgh_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long-in-limoges-blue~p~10hgh_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long-in-limoges-blue~p~10hgh_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long-in-limoges-blue~p~10hgh_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long~a~10hgh_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {
- "ZIPPER": [
- "L"
- ]
- },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Limoges Blue",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/10hgh-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long-in-limoges-blue~p~10hgh_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Excess . Recharge under the stars with Nordisk's 50°F Gormsson sleeping bag, made from smooth, water-resistant nylon with high-loft synthetic insulation and a roomy footbox for maximum comfort.",
- "SuggestedRetailPrice": 190,
- "Brand": {
- "Id": "33133",
- "Url": "/api/1.0/brand/33133/",
- "ProductsUrl": "/api/1.0/products/nordisk~b~33133/",
- "LogoSrc": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long~b~33133~160x100.jpg",
- "Name": "Nordisk"
- },
- "ListPrice": 129.99,
- "FinalPrice": 129.99
- },
- {
- "Id": "14GVF",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/14gvf/",
- "WebUrl": "https://www.sierra.com/product/bounce/14gvf/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/14gvf/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/14gvf/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "5°F Rampart Down Sleeping Bag - 650 Fill, Mummy (For Men and Women)",
- "Name": "Marmot 5°F Rampart Down Sleeping Bag - 650 Fill, Mummy (For Men and Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women-in-rusted-orange-mahogany~p~14gvf_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women-in-rusted-orange-mahogany~p~14gvf_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women-in-rusted-orange-mahogany~p~14gvf_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women-in-rusted-orange-mahogany~p~14gvf_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women~a~14gvf_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {
- "ZIPPER": [
- "L"
- ]
- },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Rusted Orange/Mahogany",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/14gvf-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women-in-rusted-orange-mahogany~p~14gvf_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . Sleep under the stars with Marmot's Rampart sleeping bag, fortified with 650 fill power down insulation for ultimate comfort and warmth.",
- "SuggestedRetailPrice": 315,
- "Brand": {
- "Id": "1308",
- "Url": "/api/1.0/brand/1308/",
- "ProductsUrl": "/api/1.0/products/marmot~b~1308/",
- "LogoSrc": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women~b~1308~160x100.jpg",
- "Name": "Marmot"
- },
- "ListPrice": 229.99,
- "FinalPrice": 229.99
- },
- {
- "Id": "14HDK",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/14hdk/",
- "WebUrl": "https://www.sierra.com/product/bounce/14hdk/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/14hdk/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/14hdk/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "45° F Traveler Sleeping Bag - Mummy (For Men and Women)",
- "Name": "Marmot 45° F Traveler Sleeping Bag - Mummy (For Men and Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women-in-redstone~p~14hdk_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women-in-redstone~p~14hdk_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women-in-redstone~p~14hdk_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women-in-redstone~p~14hdk_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women~a~14hdk_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {
- "ZIPPER": [
- "L"
- ]
- },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Redstone",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/14hdk-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women-in-redstone~p~14hdk_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . The super-packable design of Marmot's 45°F Traveler sleeping bag makes it perfect for world travel and bicycle touring. Highly compressible, yet lofty Spirafil® insulation retains warmth when wet.",
- "SuggestedRetailPrice": 110,
- "Brand": {
- "Id": "1308",
- "Url": "/api/1.0/brand/1308/",
- "ProductsUrl": "/api/1.0/products/marmot~b~1308/",
- "LogoSrc": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women~b~1308~160x100.jpg",
- "Name": "Marmot"
- },
- "ListPrice": 79.99,
- "FinalPrice": 79.99
- },
- {
- "Id": "10HKN",
- "IsClearance": false,
- "IsNew": true,
- "Url": "/api/1.0/product/10hkn/",
- "WebUrl": "https://www.sierra.com/product/bounce/10hkn/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/10hkn/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/10hkn/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "14°F Oscar Sleeping Bag - Mummy, Long",
- "Name": "Nordisk 14°F Oscar Sleeping Bag - Mummy, Long",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hkn_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hkn_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hkn_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hkn_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long~a~10hkn_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {
- "ZIPPER": [
- "L"
- ]
- },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Mustard",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/10hkn-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hkn_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Excess . Stay warm while camping in extreme conditions with Nordisk's 14°F Oscar sleeping bag, featuring a body-hugging mummy shape with Northguard S-Core insulation and an innovative tubic construction that traps air in for even heat distribution while pushing moisture out for maximum warmth and comfort.",
- "SuggestedRetailPrice": 400,
- "Brand": {
- "Id": "33133",
- "Url": "/api/1.0/brand/33133/",
- "ProductsUrl": "/api/1.0/products/nordisk~b~33133/",
- "LogoSrc": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long~b~33133~160x100.jpg",
- "Name": "Nordisk"
- },
- "ListPrice": 279.99,
- "FinalPrice": 279.99
- },
- {
- "Id": "14GVG",
- "IsClearance": true,
- "IsNew": false,
- "Url": "/api/1.0/product/14gvg/",
- "WebUrl": "https://www.sierra.com/product/bounce/14gvg/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/14gvg/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/14gvg/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "20°F Sawatch Down Sleeping Bag - 650 Fill Power, Mummy (For Women)",
- "Name": "Marmot 20°F Sawatch Down Sleeping Bag - 650 Fill Power, Mummy (For Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women-in-ocean-sea-scape~p~14gvg_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women-in-ocean-sea-scape~p~14gvg_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women-in-ocean-sea-scape~p~14gvg_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women-in-ocean-sea-scape~p~14gvg_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women~a~14gvg_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {
- "ZIPPER": [
- "L"
- ]
- },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Ocean/Sea Scape",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/14gvg-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women-in-ocean-sea-scape~p~14gvg_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . Sleep under the stars with Marmot's Sawatch sleeping bag, fortified with 650 fill power down insulation for ultimate comfort and warmth.",
- "SuggestedRetailPrice": 260,
- "Brand": {
- "Id": "1308",
- "Url": "/api/1.0/brand/1308/",
- "ProductsUrl": "/api/1.0/products/marmot~b~1308/",
- "LogoSrc": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women~b~1308~160x100.jpg",
- "Name": "Marmot"
- },
- "ListPrice": 133,
- "FinalPrice": 133
- },
- {
- "Id": "16PWT",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/16pwt/",
- "WebUrl": "https://www.sierra.com/product/bounce/16pwt/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16pwt/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/16pwt/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "Cloud Sleeping Pad - Inflatable",
- "Name": "PEAK SLUMBER Cloud Sleeping Pad - Inflatable",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable-in-blue~p~16pwt_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable-in-blue~p~16pwt_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable-in-blue~p~16pwt_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable-in-blue~p~16pwt_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable~a~16pwt_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Blue",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16pwt-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable-in-blue~p~16pwt_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Rest comfortably in the Great Outdoors with Peak Slumber's Cloud sleeping pad, made from durable ripstop fabric with a supportive, easy-to-inflate design.",
- "SuggestedRetailPrice": 50,
- "Brand": {
- "Id": "39056",
- "Url": "/api/1.0/brand/39056/",
- "ProductsUrl": "/api/1.0/products/peak-slumber~b~39056/",
- "LogoSrc": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable~b~39056~160x100.jpg",
- "Name": "PEAK SLUMBER"
- },
- "ListPrice": 34.99,
- "FinalPrice": 34.99
- },
- {
- "Id": "10HXY",
- "IsClearance": false,
- "IsNew": true,
- "Url": "/api/1.0/product/10hxy/",
- "WebUrl": "https://www.sierra.com/product/bounce/10hxy/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/10hxy/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/10hxy/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "-4°F Oscar Sleeping Bag - Mummy, Long",
- "Name": "Nordisk -4°F Oscar Sleeping Bag - Mummy, Long",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hxy_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hxy_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hxy_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hxy_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long~a~10hxy_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {
- "ZIPPER": [
- "L"
- ]
- },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Mustard",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/10hxy-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hxy_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Excess . Stay warm while camping in extreme conditions with Nordisk's -4°F Oscar sleeping bag, featuring a body-hugging mummy shape with Northguard S-Core insulation and an innovative tubic construction that traps air in for even heat distribution while pushing moisture out for maximum warmth and comfort.",
- "SuggestedRetailPrice": 410,
- "Brand": {
- "Id": "33133",
- "Url": "/api/1.0/brand/33133/",
- "ProductsUrl": "/api/1.0/products/nordisk~b~33133/",
- "LogoSrc": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long~b~33133~160x100.jpg",
- "Name": "Nordisk"
- },
- "ListPrice": 279.99,
- "FinalPrice": 279.99
- },
- {
- "Id": "832UD",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/832ud/",
- "WebUrl": "https://www.sierra.com/product/bounce/832ud/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/832ud/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/832ud/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "Insulated Static V Sleeping Pad - Inflatable",
- "Name": "Klymit Insulated Static V Sleeping Pad - Inflatable",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/klymit-insulated-static-v-sleeping-pad-inflatable-in-kings-camo~p~832ud_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/klymit-insulated-static-v-sleeping-pad-inflatable-in-kings-camo~p~832ud_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/klymit-insulated-static-v-sleeping-pad-inflatable-in-kings-camo~p~832ud_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/klymit-insulated-static-v-sleeping-pad-inflatable-in-kings-camo~p~832ud_01~600.jpg",
- "ExtraImages": null
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Kings Camo",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/832ud-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/klymit-insulated-static-v-sleeping-pad-inflatable-in-kings-camo~p~832ud_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . With added R-value for top-drawer performance, Klymit‘s Insulated Static V sleeping pad harnesses four-season performance for unwinding under the stars on any night of the year. The body-mapped V-chambers limit air movement, and the ergonomic body mapping with dynamic side rails cradles your body all night long.",
- "SuggestedRetailPrice": 110,
- "Brand": {
- "Id": "4173",
- "Url": "/api/1.0/brand/4173/",
- "ProductsUrl": "/api/1.0/products/klymit~b~4173/",
- "LogoSrc": "https://i.stpost.com/klymit-insulated-static-v-sleeping-pad-inflatable~b~4173~160x100.jpg",
- "Name": "Klymit"
- },
- "ListPrice": 79.99,
- "FinalPrice": 79.99
- },
- {
- "Id": "16PWR",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/16pwr/",
- "WebUrl": "https://www.sierra.com/product/bounce/16pwr/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16pwr/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/16pwr/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "Static V Luxe Sleeping Pad - Inflatable",
- "Name": "Klymit Static V Luxe Sleeping Pad - Inflatable",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-rootbeer~p~16pwr_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-rootbeer~p~16pwr_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-rootbeer~p~16pwr_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-rootbeer~p~16pwr_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable~a~16pwr_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Rootbeer",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16pwr-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-rootbeer~p~16pwr_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Enjoy a comfortable night under the stars with Klymit's Static V Luxe sleeping pad, made from durable materials with ergonomic raised V-chambers that support pressure points and maximize warmth -- all in a wider, thicker design.",
- "SuggestedRetailPrice": 100,
- "Brand": {
- "Id": "4173",
- "Url": "/api/1.0/brand/4173/",
- "ProductsUrl": "/api/1.0/products/klymit~b~4173/",
- "LogoSrc": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable~b~4173~160x100.jpg",
- "Name": "Klymit"
- },
- "ListPrice": 69.99,
- "FinalPrice": 69.99
- },
- {
- "Id": "858YV",
- "IsClearance": true,
- "IsNew": false,
- "Url": "/api/1.0/product/858yv/",
- "WebUrl": "https://www.sierra.com/product/bounce/858yv/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/858yv/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/858yv/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "Core Sleeping Pad - 72x20x3.5”",
- "Name": "ALPS Mountaineering Core Sleeping Pad - 72x20x3.5”",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35-in-tangerine~p~858yv_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35-in-tangerine~p~858yv_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35-in-tangerine~p~858yv_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35-in-tangerine~p~858yv_01~600.jpg",
- "ExtraImages": null
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Tangerine",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/858yv-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35-in-tangerine~p~858yv_01~160.jpg"
- },
- {
- "ColorCode": "02",
- "ColorName": "Gray",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/858yv-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35-in-gray~p~858yv_02~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Excess . With its ultralight weight, horizontal tube design and long-lasting ripstop nylon construction, the ALPS Mountaineering Core sleeping pad is a trusty companion for overnight ventures into the backcountry.",
- "SuggestedRetailPrice": 80,
- "Brand": {
- "Id": "1156",
- "Url": "/api/1.0/brand/1156/",
- "ProductsUrl": "/api/1.0/products/alps-mountaineering~b~1156/",
- "LogoSrc": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35~b~1156~160x100.jpg",
- "Name": "ALPS Mountaineering"
- },
- "ListPrice": 39,
- "FinalPrice": 39
- },
- {
- "Id": "16PWX",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/16pwx/",
- "WebUrl": "https://www.sierra.com/product/bounce/16pwx/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16pwx/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/16pwx/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "Static V Luxe Sleeping Pad - Inflatable",
- "Name": "Klymit Static V Luxe Sleeping Pad - Inflatable",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-stone-grey~p~16pwx_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-stone-grey~p~16pwx_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-stone-grey~p~16pwx_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-stone-grey~p~16pwx_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable~a~16pwx_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Stone Grey",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16pwx-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-stone-grey~p~16pwx_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Enjoy a comfortable night under the stars with Klymit's Static V Luxe sleeping pad, made from durable materials with ergonomic raised V-chambers that support pressure points and maximize warmth -- all in a wider, thicker design.",
- "SuggestedRetailPrice": 100,
- "Brand": {
- "Id": "4173",
- "Url": "/api/1.0/brand/4173/",
- "ProductsUrl": "/api/1.0/products/klymit~b~4173/",
- "LogoSrc": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable~b~4173~160x100.jpg",
- "Name": "Klymit"
- },
- "ListPrice": 69.99,
- "FinalPrice": 69.99
- },
- {
- "Id": "843YW",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/843yw/",
- "WebUrl": "https://www.sierra.com/product/bounce/843yw/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/843yw/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/843yw/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "20°F KSB Down Sleeping Bag - Mummy, 650 Fill Power",
- "Name": "Klymit 20°F KSB Down Sleeping Bag - Mummy, 650 Fill Power",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power-in-black~p~843yw_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power-in-black~p~843yw_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power-in-black~p~843yw_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power-in-black~p~843yw_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power~a~843yw_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Black",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/843yw-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power-in-black~p~843yw_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . When the temps dip below freezing, Klymit's 20°F KSB down sleeping bag surrounds your entire body in supersoft, fluffy down to trap body heat while you snooze.",
- "SuggestedRetailPrice": 250,
- "Brand": {
- "Id": "4173",
- "Url": "/api/1.0/brand/4173/",
- "ProductsUrl": "/api/1.0/products/klymit~b~4173/",
- "LogoSrc": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power~b~4173~160x100.jpg",
- "Name": "Klymit"
- },
- "ListPrice": 179.99,
- "FinalPrice": 179.99
- },
- {
- "Id": "10HPY",
- "IsClearance": false,
- "IsNew": true,
- "Url": "/api/1.0/product/10hpy/",
- "WebUrl": "https://www.sierra.com/product/bounce/10hpy/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/10hpy/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/10hpy/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "28°F Gorm Sleeping Bag - Mummy, Long",
- "Name": "Nordisk 28°F Gorm Sleeping Bag - Mummy, Long",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long-in-limoges-blue~p~10hpy_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long-in-limoges-blue~p~10hpy_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long-in-limoges-blue~p~10hpy_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long-in-limoges-blue~p~10hpy_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long~a~10hpy_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {
- "ZIPPER": [
- "L"
- ]
- },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Limoges Blue",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/10hpy-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long-in-limoges-blue~p~10hpy_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Excess . Recharge on cold nights with Nordisk's 28°F Gorm sleeping bag, made from smooth nylon with warm, durable synthetic insulation and a wider shape for maximum comfort.",
- "SuggestedRetailPrice": 240,
- "Brand": {
- "Id": "33133",
- "Url": "/api/1.0/brand/33133/",
- "ProductsUrl": "/api/1.0/products/nordisk~b~33133/",
- "LogoSrc": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long~b~33133~160x100.jpg",
- "Name": "Nordisk"
- },
- "ListPrice": 149.99,
- "FinalPrice": 149.99
- },
- {
- "Id": "985KF",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/985kf/",
- "WebUrl": "https://www.sierra.com/product/bounce/985kf/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/985kf/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/985kf/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "20°F Guide Sleeping Bag - Mummy (For Women)",
- "Name": "The North Face 20°F Guide Sleeping Bag - Mummy (For Women)",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women-in-high-rise-grey-hyper-blue~p~985kf_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women-in-high-rise-grey-hyper-blue~p~985kf_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women-in-high-rise-grey-hyper-blue~p~985kf_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women-in-high-rise-grey-hyper-blue~p~985kf_01~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women~a~985kf_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {
- "ZIPPER": [
- "R"
- ]
- },
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "High Rise Grey/Hyper Blue",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/985kf-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women-in-high-rise-grey-hyper-blue~p~985kf_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Get durable-yet-lightweight warmth for comfortable slumbers under the stars in The North Face's Guide sleeping bag, designed with toasty HeatSeeker® insulation in a water-resistant ripstop shell.",
- "SuggestedRetailPrice": 209,
- "Brand": {
- "Id": "1440",
- "Url": "/api/1.0/brand/1440/",
- "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
- "LogoSrc": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women~b~1440~160x100.jpg",
- "Name": "The North Face"
- },
- "ListPrice": 149.99,
- "FinalPrice": 149.99
- },
- {
- "Id": "985TP",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/985tp/",
- "WebUrl": "https://www.sierra.com/product/bounce/985tp/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/985tp/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/985tp/",
- "ReviewCount": 0,
- "AverageRating": 0
- },
- "NameWithoutBrand": "20°F Dolomite Double Sleeping Bag - Rectangular",
- "Name": "The North Face 20°F Dolomite Double Sleeping Bag - Rectangular",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular-in-cosmic-blue-zinc-grey~p~985tp_02~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular-in-cosmic-blue-zinc-grey~p~985tp_02~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular-in-cosmic-blue-zinc-grey~p~985tp_02~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular-in-cosmic-blue-zinc-grey~p~985tp_02~600.jpg",
- "ExtraImages": [
- {
- "Title": "Alternate View",
- "Src": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular~a~985tp_2~600.1.jpg"
- }
- ]
- },
- "SizesAvailable": {
- "ZIPPER": [
- "RH"
- ]
- },
- "Colors": [
- {
- "ColorCode": "02",
- "ColorName": "Cosmic Blue/Zinc Grey",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/985tp-02.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular-in-cosmic-blue-zinc-grey~p~985tp_02~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Snuggle up with your special someone under the stars with The North Face's 20°F Dolomite double sleeping bag, featuring durable polyester ripstop construction, toasty HeatSeeker® Eco synthetic insulation and a roomy interior.",
- "SuggestedRetailPrice": 159,
- "Brand": {
- "Id": "1440",
- "Url": "/api/1.0/brand/1440/",
- "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
- "LogoSrc": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular~b~1440~160x100.jpg",
- "Name": "The North Face"
- },
- "ListPrice": 129.99,
- "FinalPrice": 129.99
- },
- {
- "Id": "268GC",
- "IsClearance": true,
- "IsNew": false,
- "Url": "/api/1.0/product/268gc/",
- "WebUrl": "https://www.sierra.com/product/bounce/268gc/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/268gc/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/268gc/",
- "ReviewCount": 1,
- "AverageRating": 3
- },
- "NameWithoutBrand": "Trail King Sleeping Pad - Self-Inflating, Regular",
- "Name": "Therm-a-Rest Trail King Sleeping Pad - Self-Inflating, Regular",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/therm-a-rest-trail-king-sleeping-pad-self-inflating-regular-in-yellow-green~p~268gc_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/therm-a-rest-trail-king-sleeping-pad-self-inflating-regular-in-yellow-green~p~268gc_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/therm-a-rest-trail-king-sleeping-pad-self-inflating-regular-in-yellow-green~p~268gc_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/therm-a-rest-trail-king-sleeping-pad-self-inflating-regular-in-yellow-green~p~268gc_01~600.jpg",
- "ExtraImages": null
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Yellow/Green",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/268gc-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/therm-a-rest-trail-king-sleeping-pad-self-inflating-regular-in-yellow-green~p~268gc_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "2nds . Designed to inflate in a matter of seconds, Therm-a-Rest's Trail King SV sleeping pad offers unprecedented ease-of-use. Backpackers will appreciate 2.5" of ultra-supportive loft and the auto-reversing SpeedValve that lets you deflate the mattress in a flash as well.",
- "SuggestedRetailPrice": 129.95,
- "Brand": {
- "Id": "3177",
- "Url": "/api/1.0/brand/3177/",
- "ProductsUrl": "/api/1.0/products/therm-a-rest~b~3177/",
- "LogoSrc": "https://i.stpost.com/therm-a-rest-trail-king-sleeping-pad-self-inflating-regular~b~3177~160x100.jpg",
- "Name": "Therm-a-Rest"
- },
- "ListPrice": 49,
- "FinalPrice": 49
- },
- {
- "Id": "665JR",
- "IsClearance": false,
- "IsNew": false,
- "Url": "/api/1.0/product/665jr/",
- "WebUrl": "https://www.sierra.com/product/bounce/665jr/?filterString=s~sleeping-bags%2F",
- "AffiliateWebUrl": "https://www.sierra.com/product/bounce/665jr/?filterString=s~sleeping-bags%2F",
- "Reviews": {
- "ReviewsUrl": "/api/1.0/reviewsbyproduct/665jr/",
- "ReviewCount": 1,
- "AverageRating": 1
- },
- "NameWithoutBrand": "Regular 375 Foam Sleeping Pad",
- "Name": "ALPS Mountaineering Regular 375 Foam Sleeping Pad",
- "IsFamousBrand": false,
- "Images": {
- "PrimarySmall": "https://i.stpost.com/alps-mountaineering-regular-375-foam-sleeping-pad-in-green~p~665jr_01~80.jpg",
- "PrimaryMedium": "https://i.stpost.com/alps-mountaineering-regular-375-foam-sleeping-pad-in-green~p~665jr_01~160.jpg",
- "PrimaryLarge": "https://i.stpost.com/alps-mountaineering-regular-375-foam-sleeping-pad-in-green~p~665jr_01~320.jpg",
- "PrimaryExtraLarge": "https://i.stpost.com/alps-mountaineering-regular-375-foam-sleeping-pad-in-green~p~665jr_01~600.jpg",
- "ExtraImages": null
- },
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Green",
- "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/665jr-01.jpg",
- "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-regular-375-foam-sleeping-pad-in-green~p~665jr_01~160.jpg"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . ALPS Mountaineering Regular 375 sleeping pad is a dense, textured foam mat that protects and insulates against cold, uneven surfaces.",
- "SuggestedRetailPrice": 16.99,
- "Brand": {
- "Id": "1156",
- "Url": "/api/1.0/brand/1156/",
- "ProductsUrl": "/api/1.0/products/alps-mountaineering~b~1156/",
- "LogoSrc": "https://i.stpost.com/alps-mountaineering-regular-375-foam-sleeping-pad~b~1156~160x100.jpg",
- "Name": "ALPS Mountaineering"
- },
- "ListPrice": 12.99,
- "FinalPrice": 12.99
- }
- ]
-}
+{
+ "Count": 58,
+ "Page": 1,
+ "PerPage": 24,
+ "NextPageUrl": "/api/1.0/products/s~sleeping-bags/?page=2",
+ "LastPageUrl": "/api/1.0/products/s~sleeping-bags/?page=3",
+ "RefinementsUrl": "/api/1.0/refinements/search~sleeping-bags/",
+ "Title": "Search for \"sleeping bags\" ",
+ "Result": [
+ {
+ "Id": "927VJ",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/927vj/",
+ "WebUrl": "https://www.sierra.com/product/bounce/927vj/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/927vj/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/927vj/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "20°F Pinole Sleeping Bag - Mummy (For Men and Women)",
+ "Name": "Mountain Hardwear 20°F Pinole Sleeping Bag - Mummy (For Men and Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women-in-altitude-blue~p~927vj_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women-in-altitude-blue~p~927vj_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women-in-altitude-blue~p~927vj_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women-in-altitude-blue~p~927vj_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women~a~927vj_2~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["L"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Altitude Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/927vj-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women-in-altitude-blue~p~927vj_01~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Dark Army",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/927vj-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women-in-dark-army~p~927vj_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . From spring to summer to fall, Mountain Hardwear's 20° F Pinole sleeping bag delivers away-from-home comfort with its Thermal.Q synthetic insulation, tailored hood for sealing in heat and comfort footbox for just-right wiggle room.",
+ "SuggestedRetailPrice": 130,
+ "Brand": {
+ "Id": "13530",
+ "Url": "/api/1.0/brand/13530/",
+ "ProductsUrl": "/api/1.0/products/mountain-hardwear~b~13530/",
+ "LogoSrc": "https://i.stpost.com/mountain-hardwear-20-f-pinole-sleeping-bag-mummy-for-men-and-women~b~13530~160x100.jpg",
+ "Name": "Mountain Hardwear"
+ },
+ "ListPrice": 99.99,
+ "FinalPrice": 99.99
+ },
+ {
+ "Id": "21KMF",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/21kmf/",
+ "WebUrl": "https://www.sierra.com/product/bounce/21kmf/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/21kmf/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/21kmf/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "30°F Mavericks Double Wide Sleeping Bag - Square",
+ "Name": "Marmot 30°F Mavericks Double Wide Sleeping Bag - Square",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square-in-golden-copper-dark-olive~p~21kmf_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square-in-golden-copper-dark-olive~p~21kmf_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square-in-golden-copper-dark-olive~p~21kmf_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square-in-golden-copper-dark-olive~p~21kmf_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square~a~21kmf_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["LH"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Golden Copper/Dark Olive",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/21kmf-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square-in-golden-copper-dark-olive~p~21kmf_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Designed to share with your special someone, this Marmot Mavericks double wide sleeping bag also zips apart to become two individual bags. Fortified with SpiraFil synthetic insulation for optimal warmth and comfort on chilly nights.",
+ "SuggestedRetailPrice": 212,
+ "Brand": {
+ "Id": "1308",
+ "Url": "/api/1.0/brand/1308/",
+ "ProductsUrl": "/api/1.0/products/marmot~b~1308/",
+ "LogoSrc": "https://i.stpost.com/marmot-30-f-mavericks-double-wide-sleeping-bag-square~b~1308~160x100.jpg",
+ "Name": "Marmot"
+ },
+ "ListPrice": 149.99,
+ "FinalPrice": 149.99
+ },
+ {
+ "Id": "640GU",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/640gu/",
+ "WebUrl": "https://www.sierra.com/product/bounce/640gu/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/640gu/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/640gu/",
+ "ReviewCount": 1,
+ "AverageRating": 1
+ },
+ "NameWithoutBrand": "SpeedValve NeoAir® Camper SV Sleeping Pad - Inflatable, Extra-Large",
+ "Name": "Therm-a-Rest SpeedValve NeoAir® Camper SV Sleeping Pad - Inflatable, Extra-Large",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/therm-a-rest-speedvalve-neoair-camper-sv-sleeping-pad-inflatable-extra-large-in-blue~p~640gu_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/therm-a-rest-speedvalve-neoair-camper-sv-sleeping-pad-inflatable-extra-large-in-blue~p~640gu_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/therm-a-rest-speedvalve-neoair-camper-sv-sleeping-pad-inflatable-extra-large-in-blue~p~640gu_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/therm-a-rest-speedvalve-neoair-camper-sv-sleeping-pad-inflatable-extra-large-in-blue~p~640gu_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/640gu-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/therm-a-rest-speedvalve-neoair-camper-sv-sleeping-pad-inflatable-extra-large-in-blue~p~640gu_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Exceptionally compact, lightweight and with ultra-fast inflation and deflation, the Therm-A-Rest SpeedValve Camper SV sleeping pad is a deluxe base camp air mattress with NeoAir® construction for added warmth and stability.",
+ "SuggestedRetailPrice": 129.99,
+ "Brand": {
+ "Id": "3177",
+ "Url": "/api/1.0/brand/3177/",
+ "ProductsUrl": "/api/1.0/products/therm-a-rest~b~3177/",
+ "LogoSrc": "https://i.stpost.com/therm-a-rest-speedvalve-neoair-camper-sv-sleeping-pad-inflatable-extra-large~b~3177~160x100.jpg",
+ "Name": "Therm-a-Rest"
+ },
+ "ListPrice": 49,
+ "FinalPrice": 49
+ },
+ {
+ "Id": "861PY",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/861py/",
+ "WebUrl": "https://www.sierra.com/product/bounce/861py/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/861py/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/861py/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "50°F Rambler Sleeping Bag - Semi-Rectangular (For Men and Women)",
+ "Name": "Kelty 50°F Rambler Sleeping Bag - Semi-Rectangular (For Men and Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-green-apple~p~861py_03~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-green-apple~p~861py_03~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-green-apple~p~861py_03~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-green-apple~p~861py_03~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women~a~861py_2~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women~a~861py_3~600.3.jpg"
+ },
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women~a~861py_4~600.2.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "LENGTH": ["REG"],
+ "ZIPPER": ["R"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "03",
+ "ColorName": "Green Apple",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/861py-03.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-green-apple~p~861py_03~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Fire Orange",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/861py-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-fire-orange~p~861py_02~160.jpg"
+ },
+ {
+ "ColorCode": "04",
+ "ColorName": "Red Sand",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/861py-04.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-red-sand~p~861py_04~160.jpg"
+ },
+ {
+ "ColorCode": "01",
+ "ColorName": "Paradise Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/861py-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-paradise-blue~p~861py_01~160.jpg"
+ },
+ {
+ "ColorCode": "05",
+ "ColorName": "Sycamore/Fire Orange",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/861py-05.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women-in-sycamore-fire-orange~p~861py_05~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Kelty's 50°F Rambler sleeping bag features a semi-rectangular design that keeps you comfortably warm (or cool) in mild temperatures.",
+ "SuggestedRetailPrice": 50,
+ "Brand": {
+ "Id": "1105",
+ "Url": "/api/1.0/brand/1105/",
+ "ProductsUrl": "/api/1.0/products/kelty~b~1105/",
+ "LogoSrc": "https://i.stpost.com/kelty-50-f-rambler-sleeping-bag-semi-rectangular-for-men-and-women~b~1105~160x100.jpg",
+ "Name": "Kelty"
+ },
+ "ListPrice": 34.99,
+ "FinalPrice": 34.99
+ },
+ {
+ "Id": "16PWY",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/16pwy/",
+ "WebUrl": "https://www.sierra.com/product/bounce/16pwy/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16pwy/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/16pwy/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "Static V2 Sleeping Pad - Inflatable",
+ "Name": "Klymit Static V2 Sleeping Pad - Inflatable",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable-in-green~p~16pwy_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable-in-green~p~16pwy_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable-in-green~p~16pwy_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable-in-green~p~16pwy_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable~a~16pwy_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Green",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16pwy-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable-in-green~p~16pwy_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Rest comfortably on the trail with Klymit's Static V2 sleeping pad, featuring a lightweight, compact design with ergonomic V-chambers that support your pressure points and maximize warmth.",
+ "SuggestedRetailPrice": 55,
+ "Brand": {
+ "Id": "4173",
+ "Url": "/api/1.0/brand/4173/",
+ "ProductsUrl": "/api/1.0/products/klymit~b~4173/",
+ "LogoSrc": "https://i.stpost.com/klymit-static-v2-sleeping-pad-inflatable~b~4173~160x100.jpg",
+ "Name": "Klymit"
+ },
+ "ListPrice": 39.99,
+ "FinalPrice": 39.99
+ },
+ {
+ "Id": "14GVH",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/14gvh/",
+ "WebUrl": "https://www.sierra.com/product/bounce/14gvh/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/14gvh/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/14gvh/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "20°F Kenosha Down Sleeping Bag - 650 Fill Power, Mummy (For Men and Women)",
+ "Name": "Marmot 20°F Kenosha Down Sleeping Bag - 650 Fill Power, Mummy (For Men and Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women-in-green-lichen-green-gulch~p~14gvh_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women-in-green-lichen-green-gulch~p~14gvh_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women-in-green-lichen-green-gulch~p~14gvh_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women-in-green-lichen-green-gulch~p~14gvh_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women~a~14gvh_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["L"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Green Lichen/Green Gulch",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/14gvh-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women-in-green-lichen-green-gulch~p~14gvh_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Sleep under the stars with Marmot's Kenosha sleeping bag, fortified with 650 fill power down insulation for ultimate comfort and warmth.",
+ "SuggestedRetailPrice": 260,
+ "Brand": {
+ "Id": "1308",
+ "Url": "/api/1.0/brand/1308/",
+ "ProductsUrl": "/api/1.0/products/marmot~b~1308/",
+ "LogoSrc": "https://i.stpost.com/marmot-20-f-kenosha-down-sleeping-bag-650-fill-power-mummy-for-men-and-women~b~1308~160x100.jpg",
+ "Name": "Marmot"
+ },
+ "ListPrice": 189.99,
+ "FinalPrice": 189.99
+ },
+ {
+ "Id": "621CP",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/621cp/",
+ "WebUrl": "https://www.sierra.com/product/bounce/621cp/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/621cp/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/621cp/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "30°F Trestles Elite Sleeping Bag (For Women)",
+ "Name": "Marmot 30°F Trestles Elite Sleeping Bag (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/marmot-30-f-trestles-elite-sleeping-bag-for-women-in-turf-green-garden-green~p~621cp_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/marmot-30-f-trestles-elite-sleeping-bag-for-women-in-turf-green-garden-green~p~621cp_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/marmot-30-f-trestles-elite-sleeping-bag-for-women-in-turf-green-garden-green~p~621cp_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/marmot-30-f-trestles-elite-sleeping-bag-for-women-in-turf-green-garden-green~p~621cp_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {
+ "HAND": ["LH"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Turf Green/Garden Green",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/621cp-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/marmot-30-f-trestles-elite-sleeping-bag-for-women-in-turf-green-garden-green~p~621cp_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Marmot's 30°F Trestles Elite sleeping bag promises to keep you toasty-warm in near-freezing weather with HL-ElixR® synthetic insulation that's a smart combination of three fibers to efficiently trap heat, maintain loft and feel soft and comfortable.",
+ "SuggestedRetailPrice": 104.99,
+ "Brand": {
+ "Id": "1308",
+ "Url": "/api/1.0/brand/1308/",
+ "ProductsUrl": "/api/1.0/products/marmot~b~1308/",
+ "LogoSrc": "https://i.stpost.com/marmot-30-f-trestles-elite-sleeping-bag-for-women~b~1308~160x100.jpg",
+ "Name": "Marmot"
+ },
+ "ListPrice": 79.99,
+ "FinalPrice": 79.99
+ },
+ {
+ "Id": "10HGH",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/10hgh/",
+ "WebUrl": "https://www.sierra.com/product/bounce/10hgh/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/10hgh/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/10hgh/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "50°F Gormsson Sleeping Bag - Mummy, Long",
+ "Name": "Nordisk 50°F Gormsson Sleeping Bag - Mummy, Long",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long-in-limoges-blue~p~10hgh_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long-in-limoges-blue~p~10hgh_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long-in-limoges-blue~p~10hgh_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long-in-limoges-blue~p~10hgh_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long~a~10hgh_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["L"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Limoges Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/10hgh-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long-in-limoges-blue~p~10hgh_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . Recharge under the stars with Nordisk's 50°F Gormsson sleeping bag, made from smooth, water-resistant nylon with high-loft synthetic insulation and a roomy footbox for maximum comfort.",
+ "SuggestedRetailPrice": 190,
+ "Brand": {
+ "Id": "33133",
+ "Url": "/api/1.0/brand/33133/",
+ "ProductsUrl": "/api/1.0/products/nordisk~b~33133/",
+ "LogoSrc": "https://i.stpost.com/nordisk-50-f-gormsson-sleeping-bag-mummy-long~b~33133~160x100.jpg",
+ "Name": "Nordisk"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "14GVF",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/14gvf/",
+ "WebUrl": "https://www.sierra.com/product/bounce/14gvf/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/14gvf/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/14gvf/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "5°F Rampart Down Sleeping Bag - 650 Fill, Mummy (For Men and Women)",
+ "Name": "Marmot 5°F Rampart Down Sleeping Bag - 650 Fill, Mummy (For Men and Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women-in-rusted-orange-mahogany~p~14gvf_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women-in-rusted-orange-mahogany~p~14gvf_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women-in-rusted-orange-mahogany~p~14gvf_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women-in-rusted-orange-mahogany~p~14gvf_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women~a~14gvf_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["L"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Rusted Orange/Mahogany",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/14gvf-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women-in-rusted-orange-mahogany~p~14gvf_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Sleep under the stars with Marmot's Rampart sleeping bag, fortified with 650 fill power down insulation for ultimate comfort and warmth.",
+ "SuggestedRetailPrice": 315,
+ "Brand": {
+ "Id": "1308",
+ "Url": "/api/1.0/brand/1308/",
+ "ProductsUrl": "/api/1.0/products/marmot~b~1308/",
+ "LogoSrc": "https://i.stpost.com/marmot-5-f-rampart-down-sleeping-bag-650-fill-mummy-for-men-and-women~b~1308~160x100.jpg",
+ "Name": "Marmot"
+ },
+ "ListPrice": 229.99,
+ "FinalPrice": 229.99
+ },
+ {
+ "Id": "14HDK",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/14hdk/",
+ "WebUrl": "https://www.sierra.com/product/bounce/14hdk/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/14hdk/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/14hdk/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "45° F Traveler Sleeping Bag - Mummy (For Men and Women)",
+ "Name": "Marmot 45° F Traveler Sleeping Bag - Mummy (For Men and Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women-in-redstone~p~14hdk_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women-in-redstone~p~14hdk_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women-in-redstone~p~14hdk_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women-in-redstone~p~14hdk_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women~a~14hdk_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["L"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Redstone",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/14hdk-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women-in-redstone~p~14hdk_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . The super-packable design of Marmot's 45°F Traveler sleeping bag makes it perfect for world travel and bicycle touring. Highly compressible, yet lofty Spirafil® insulation retains warmth when wet.",
+ "SuggestedRetailPrice": 110,
+ "Brand": {
+ "Id": "1308",
+ "Url": "/api/1.0/brand/1308/",
+ "ProductsUrl": "/api/1.0/products/marmot~b~1308/",
+ "LogoSrc": "https://i.stpost.com/marmot-45-f-traveler-sleeping-bag-mummy-for-men-and-women~b~1308~160x100.jpg",
+ "Name": "Marmot"
+ },
+ "ListPrice": 79.99,
+ "FinalPrice": 79.99
+ },
+ {
+ "Id": "10HKN",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/10hkn/",
+ "WebUrl": "https://www.sierra.com/product/bounce/10hkn/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/10hkn/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/10hkn/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "14°F Oscar Sleeping Bag - Mummy, Long",
+ "Name": "Nordisk 14°F Oscar Sleeping Bag - Mummy, Long",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hkn_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hkn_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hkn_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hkn_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long~a~10hkn_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["L"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Mustard",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/10hkn-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hkn_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . Stay warm while camping in extreme conditions with Nordisk's 14°F Oscar sleeping bag, featuring a body-hugging mummy shape with Northguard S-Core insulation and an innovative tubic construction that traps air in for even heat distribution while pushing moisture out for maximum warmth and comfort.",
+ "SuggestedRetailPrice": 400,
+ "Brand": {
+ "Id": "33133",
+ "Url": "/api/1.0/brand/33133/",
+ "ProductsUrl": "/api/1.0/products/nordisk~b~33133/",
+ "LogoSrc": "https://i.stpost.com/nordisk-14-f-oscar-sleeping-bag-mummy-long~b~33133~160x100.jpg",
+ "Name": "Nordisk"
+ },
+ "ListPrice": 279.99,
+ "FinalPrice": 279.99
+ },
+ {
+ "Id": "14GVG",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/14gvg/",
+ "WebUrl": "https://www.sierra.com/product/bounce/14gvg/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/14gvg/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/14gvg/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "20°F Sawatch Down Sleeping Bag - 650 Fill Power, Mummy (For Women)",
+ "Name": "Marmot 20°F Sawatch Down Sleeping Bag - 650 Fill Power, Mummy (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women-in-ocean-sea-scape~p~14gvg_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women-in-ocean-sea-scape~p~14gvg_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women-in-ocean-sea-scape~p~14gvg_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women-in-ocean-sea-scape~p~14gvg_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women~a~14gvg_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["L"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Ocean/Sea Scape",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/14gvg-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women-in-ocean-sea-scape~p~14gvg_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Sleep under the stars with Marmot's Sawatch sleeping bag, fortified with 650 fill power down insulation for ultimate comfort and warmth.",
+ "SuggestedRetailPrice": 260,
+ "Brand": {
+ "Id": "1308",
+ "Url": "/api/1.0/brand/1308/",
+ "ProductsUrl": "/api/1.0/products/marmot~b~1308/",
+ "LogoSrc": "https://i.stpost.com/marmot-20-f-sawatch-down-sleeping-bag-650-fill-power-mummy-for-women~b~1308~160x100.jpg",
+ "Name": "Marmot"
+ },
+ "ListPrice": 133,
+ "FinalPrice": 133
+ },
+ {
+ "Id": "16PWT",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/16pwt/",
+ "WebUrl": "https://www.sierra.com/product/bounce/16pwt/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16pwt/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/16pwt/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "Cloud Sleeping Pad - Inflatable",
+ "Name": "PEAK SLUMBER Cloud Sleeping Pad - Inflatable",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable-in-blue~p~16pwt_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable-in-blue~p~16pwt_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable-in-blue~p~16pwt_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable-in-blue~p~16pwt_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable~a~16pwt_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16pwt-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable-in-blue~p~16pwt_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Rest comfortably in the Great Outdoors with Peak Slumber's Cloud sleeping pad, made from durable ripstop fabric with a supportive, easy-to-inflate design.",
+ "SuggestedRetailPrice": 50,
+ "Brand": {
+ "Id": "39056",
+ "Url": "/api/1.0/brand/39056/",
+ "ProductsUrl": "/api/1.0/products/peak-slumber~b~39056/",
+ "LogoSrc": "https://i.stpost.com/peak-slumber-cloud-sleeping-pad-inflatable~b~39056~160x100.jpg",
+ "Name": "PEAK SLUMBER"
+ },
+ "ListPrice": 34.99,
+ "FinalPrice": 34.99
+ },
+ {
+ "Id": "10HXY",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/10hxy/",
+ "WebUrl": "https://www.sierra.com/product/bounce/10hxy/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/10hxy/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/10hxy/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "-4°F Oscar Sleeping Bag - Mummy, Long",
+ "Name": "Nordisk -4°F Oscar Sleeping Bag - Mummy, Long",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hxy_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hxy_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hxy_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hxy_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long~a~10hxy_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["L"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Mustard",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/10hxy-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long-in-mustard~p~10hxy_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . Stay warm while camping in extreme conditions with Nordisk's -4°F Oscar sleeping bag, featuring a body-hugging mummy shape with Northguard S-Core insulation and an innovative tubic construction that traps air in for even heat distribution while pushing moisture out for maximum warmth and comfort.",
+ "SuggestedRetailPrice": 410,
+ "Brand": {
+ "Id": "33133",
+ "Url": "/api/1.0/brand/33133/",
+ "ProductsUrl": "/api/1.0/products/nordisk~b~33133/",
+ "LogoSrc": "https://i.stpost.com/nordisk-4-f-oscar-sleeping-bag-mummy-long~b~33133~160x100.jpg",
+ "Name": "Nordisk"
+ },
+ "ListPrice": 279.99,
+ "FinalPrice": 279.99
+ },
+ {
+ "Id": "832UD",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/832ud/",
+ "WebUrl": "https://www.sierra.com/product/bounce/832ud/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/832ud/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/832ud/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "Insulated Static V Sleeping Pad - Inflatable",
+ "Name": "Klymit Insulated Static V Sleeping Pad - Inflatable",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/klymit-insulated-static-v-sleeping-pad-inflatable-in-kings-camo~p~832ud_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/klymit-insulated-static-v-sleeping-pad-inflatable-in-kings-camo~p~832ud_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/klymit-insulated-static-v-sleeping-pad-inflatable-in-kings-camo~p~832ud_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/klymit-insulated-static-v-sleeping-pad-inflatable-in-kings-camo~p~832ud_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Kings Camo",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/832ud-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/klymit-insulated-static-v-sleeping-pad-inflatable-in-kings-camo~p~832ud_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . With added R-value for top-drawer performance, Klymit‘s Insulated Static V sleeping pad harnesses four-season performance for unwinding under the stars on any night of the year. The body-mapped V-chambers limit air movement, and the ergonomic body mapping with dynamic side rails cradles your body all night long.",
+ "SuggestedRetailPrice": 110,
+ "Brand": {
+ "Id": "4173",
+ "Url": "/api/1.0/brand/4173/",
+ "ProductsUrl": "/api/1.0/products/klymit~b~4173/",
+ "LogoSrc": "https://i.stpost.com/klymit-insulated-static-v-sleeping-pad-inflatable~b~4173~160x100.jpg",
+ "Name": "Klymit"
+ },
+ "ListPrice": 79.99,
+ "FinalPrice": 79.99
+ },
+ {
+ "Id": "16PWR",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/16pwr/",
+ "WebUrl": "https://www.sierra.com/product/bounce/16pwr/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16pwr/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/16pwr/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "Static V Luxe Sleeping Pad - Inflatable",
+ "Name": "Klymit Static V Luxe Sleeping Pad - Inflatable",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-rootbeer~p~16pwr_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-rootbeer~p~16pwr_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-rootbeer~p~16pwr_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-rootbeer~p~16pwr_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable~a~16pwr_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Rootbeer",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16pwr-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-rootbeer~p~16pwr_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Enjoy a comfortable night under the stars with Klymit's Static V Luxe sleeping pad, made from durable materials with ergonomic raised V-chambers that support pressure points and maximize warmth -- all in a wider, thicker design.",
+ "SuggestedRetailPrice": 100,
+ "Brand": {
+ "Id": "4173",
+ "Url": "/api/1.0/brand/4173/",
+ "ProductsUrl": "/api/1.0/products/klymit~b~4173/",
+ "LogoSrc": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable~b~4173~160x100.jpg",
+ "Name": "Klymit"
+ },
+ "ListPrice": 69.99,
+ "FinalPrice": 69.99
+ },
+ {
+ "Id": "858YV",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/858yv/",
+ "WebUrl": "https://www.sierra.com/product/bounce/858yv/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/858yv/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/858yv/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "Core Sleeping Pad - 72x20x3.5”",
+ "Name": "ALPS Mountaineering Core Sleeping Pad - 72x20x3.5”",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35-in-tangerine~p~858yv_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35-in-tangerine~p~858yv_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35-in-tangerine~p~858yv_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35-in-tangerine~p~858yv_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Tangerine",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/858yv-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35-in-tangerine~p~858yv_01~160.jpg"
+ },
+ {
+ "ColorCode": "02",
+ "ColorName": "Gray",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/858yv-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35-in-gray~p~858yv_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . With its ultralight weight, horizontal tube design and long-lasting ripstop nylon construction, the ALPS Mountaineering Core sleeping pad is a trusty companion for overnight ventures into the backcountry.",
+ "SuggestedRetailPrice": 80,
+ "Brand": {
+ "Id": "1156",
+ "Url": "/api/1.0/brand/1156/",
+ "ProductsUrl": "/api/1.0/products/alps-mountaineering~b~1156/",
+ "LogoSrc": "https://i.stpost.com/alps-mountaineering-core-sleeping-pad-72x20x35~b~1156~160x100.jpg",
+ "Name": "ALPS Mountaineering"
+ },
+ "ListPrice": 39,
+ "FinalPrice": 39
+ },
+ {
+ "Id": "16PWX",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/16pwx/",
+ "WebUrl": "https://www.sierra.com/product/bounce/16pwx/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/16pwx/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/16pwx/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "Static V Luxe Sleeping Pad - Inflatable",
+ "Name": "Klymit Static V Luxe Sleeping Pad - Inflatable",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-stone-grey~p~16pwx_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-stone-grey~p~16pwx_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-stone-grey~p~16pwx_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-stone-grey~p~16pwx_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable~a~16pwx_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Stone Grey",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/16pwx-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable-in-stone-grey~p~16pwx_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Enjoy a comfortable night under the stars with Klymit's Static V Luxe sleeping pad, made from durable materials with ergonomic raised V-chambers that support pressure points and maximize warmth -- all in a wider, thicker design.",
+ "SuggestedRetailPrice": 100,
+ "Brand": {
+ "Id": "4173",
+ "Url": "/api/1.0/brand/4173/",
+ "ProductsUrl": "/api/1.0/products/klymit~b~4173/",
+ "LogoSrc": "https://i.stpost.com/klymit-static-v-luxe-sleeping-pad-inflatable~b~4173~160x100.jpg",
+ "Name": "Klymit"
+ },
+ "ListPrice": 69.99,
+ "FinalPrice": 69.99
+ },
+ {
+ "Id": "843YW",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/843yw/",
+ "WebUrl": "https://www.sierra.com/product/bounce/843yw/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/843yw/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/843yw/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "20°F KSB Down Sleeping Bag - Mummy, 650 Fill Power",
+ "Name": "Klymit 20°F KSB Down Sleeping Bag - Mummy, 650 Fill Power",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power-in-black~p~843yw_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power-in-black~p~843yw_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power-in-black~p~843yw_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power-in-black~p~843yw_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power~a~843yw_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Black",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/843yw-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power-in-black~p~843yw_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . When the temps dip below freezing, Klymit's 20°F KSB down sleeping bag surrounds your entire body in supersoft, fluffy down to trap body heat while you snooze.",
+ "SuggestedRetailPrice": 250,
+ "Brand": {
+ "Id": "4173",
+ "Url": "/api/1.0/brand/4173/",
+ "ProductsUrl": "/api/1.0/products/klymit~b~4173/",
+ "LogoSrc": "https://i.stpost.com/klymit-20-f-ksb-down-sleeping-bag-mummy-650-fill-power~b~4173~160x100.jpg",
+ "Name": "Klymit"
+ },
+ "ListPrice": 179.99,
+ "FinalPrice": 179.99
+ },
+ {
+ "Id": "10HPY",
+ "IsClearance": false,
+ "IsNew": true,
+ "Url": "/api/1.0/product/10hpy/",
+ "WebUrl": "https://www.sierra.com/product/bounce/10hpy/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/10hpy/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/10hpy/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "28°F Gorm Sleeping Bag - Mummy, Long",
+ "Name": "Nordisk 28°F Gorm Sleeping Bag - Mummy, Long",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long-in-limoges-blue~p~10hpy_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long-in-limoges-blue~p~10hpy_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long-in-limoges-blue~p~10hpy_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long-in-limoges-blue~p~10hpy_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long~a~10hpy_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["L"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Limoges Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/10hpy-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long-in-limoges-blue~p~10hpy_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . Recharge on cold nights with Nordisk's 28°F Gorm sleeping bag, made from smooth nylon with warm, durable synthetic insulation and a wider shape for maximum comfort.",
+ "SuggestedRetailPrice": 240,
+ "Brand": {
+ "Id": "33133",
+ "Url": "/api/1.0/brand/33133/",
+ "ProductsUrl": "/api/1.0/products/nordisk~b~33133/",
+ "LogoSrc": "https://i.stpost.com/nordisk-28-f-gorm-sleeping-bag-mummy-long~b~33133~160x100.jpg",
+ "Name": "Nordisk"
+ },
+ "ListPrice": 149.99,
+ "FinalPrice": 149.99
+ },
+ {
+ "Id": "985KF",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/985kf/",
+ "WebUrl": "https://www.sierra.com/product/bounce/985kf/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/985kf/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/985kf/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "20°F Guide Sleeping Bag - Mummy (For Women)",
+ "Name": "The North Face 20°F Guide Sleeping Bag - Mummy (For Women)",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women-in-high-rise-grey-hyper-blue~p~985kf_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women-in-high-rise-grey-hyper-blue~p~985kf_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women-in-high-rise-grey-hyper-blue~p~985kf_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women-in-high-rise-grey-hyper-blue~p~985kf_01~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women~a~985kf_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["R"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "High Rise Grey/Hyper Blue",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/985kf-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women-in-high-rise-grey-hyper-blue~p~985kf_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Get durable-yet-lightweight warmth for comfortable slumbers under the stars in The North Face's Guide sleeping bag, designed with toasty HeatSeeker® insulation in a water-resistant ripstop shell.",
+ "SuggestedRetailPrice": 209,
+ "Brand": {
+ "Id": "1440",
+ "Url": "/api/1.0/brand/1440/",
+ "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
+ "LogoSrc": "https://i.stpost.com/the-north-face-20-f-guide-sleeping-bag-mummy-for-women~b~1440~160x100.jpg",
+ "Name": "The North Face"
+ },
+ "ListPrice": 149.99,
+ "FinalPrice": 149.99
+ },
+ {
+ "Id": "985TP",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/985tp/",
+ "WebUrl": "https://www.sierra.com/product/bounce/985tp/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/985tp/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/985tp/",
+ "ReviewCount": 0,
+ "AverageRating": 0
+ },
+ "NameWithoutBrand": "20°F Dolomite Double Sleeping Bag - Rectangular",
+ "Name": "The North Face 20°F Dolomite Double Sleeping Bag - Rectangular",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular-in-cosmic-blue-zinc-grey~p~985tp_02~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular-in-cosmic-blue-zinc-grey~p~985tp_02~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular-in-cosmic-blue-zinc-grey~p~985tp_02~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular-in-cosmic-blue-zinc-grey~p~985tp_02~600.jpg",
+ "ExtraImages": [
+ {
+ "Title": "Alternate View",
+ "Src": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular~a~985tp_2~600.1.jpg"
+ }
+ ]
+ },
+ "SizesAvailable": {
+ "ZIPPER": ["RH"]
+ },
+ "Colors": [
+ {
+ "ColorCode": "02",
+ "ColorName": "Cosmic Blue/Zinc Grey",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/985tp-02.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular-in-cosmic-blue-zinc-grey~p~985tp_02~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Snuggle up with your special someone under the stars with The North Face's 20°F Dolomite double sleeping bag, featuring durable polyester ripstop construction, toasty HeatSeeker® Eco synthetic insulation and a roomy interior.",
+ "SuggestedRetailPrice": 159,
+ "Brand": {
+ "Id": "1440",
+ "Url": "/api/1.0/brand/1440/",
+ "ProductsUrl": "/api/1.0/products/the-north-face~b~1440/",
+ "LogoSrc": "https://i.stpost.com/the-north-face-20-f-dolomite-double-sleeping-bag-rectangular~b~1440~160x100.jpg",
+ "Name": "The North Face"
+ },
+ "ListPrice": 129.99,
+ "FinalPrice": 129.99
+ },
+ {
+ "Id": "268GC",
+ "IsClearance": true,
+ "IsNew": false,
+ "Url": "/api/1.0/product/268gc/",
+ "WebUrl": "https://www.sierra.com/product/bounce/268gc/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/268gc/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/268gc/",
+ "ReviewCount": 1,
+ "AverageRating": 3
+ },
+ "NameWithoutBrand": "Trail King Sleeping Pad - Self-Inflating, Regular",
+ "Name": "Therm-a-Rest Trail King Sleeping Pad - Self-Inflating, Regular",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/therm-a-rest-trail-king-sleeping-pad-self-inflating-regular-in-yellow-green~p~268gc_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/therm-a-rest-trail-king-sleeping-pad-self-inflating-regular-in-yellow-green~p~268gc_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/therm-a-rest-trail-king-sleeping-pad-self-inflating-regular-in-yellow-green~p~268gc_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/therm-a-rest-trail-king-sleeping-pad-self-inflating-regular-in-yellow-green~p~268gc_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Yellow/Green",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/268gc-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/therm-a-rest-trail-king-sleeping-pad-self-inflating-regular-in-yellow-green~p~268gc_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "2nds . Designed to inflate in a matter of seconds, Therm-a-Rest's Trail King SV sleeping pad offers unprecedented ease-of-use. Backpackers will appreciate 2.5" of ultra-supportive loft and the auto-reversing SpeedValve that lets you deflate the mattress in a flash as well.",
+ "SuggestedRetailPrice": 129.95,
+ "Brand": {
+ "Id": "3177",
+ "Url": "/api/1.0/brand/3177/",
+ "ProductsUrl": "/api/1.0/products/therm-a-rest~b~3177/",
+ "LogoSrc": "https://i.stpost.com/therm-a-rest-trail-king-sleeping-pad-self-inflating-regular~b~3177~160x100.jpg",
+ "Name": "Therm-a-Rest"
+ },
+ "ListPrice": 49,
+ "FinalPrice": 49
+ },
+ {
+ "Id": "665JR",
+ "IsClearance": false,
+ "IsNew": false,
+ "Url": "/api/1.0/product/665jr/",
+ "WebUrl": "https://www.sierra.com/product/bounce/665jr/?filterString=s~sleeping-bags%2F",
+ "AffiliateWebUrl": "https://www.sierra.com/product/bounce/665jr/?filterString=s~sleeping-bags%2F",
+ "Reviews": {
+ "ReviewsUrl": "/api/1.0/reviewsbyproduct/665jr/",
+ "ReviewCount": 1,
+ "AverageRating": 1
+ },
+ "NameWithoutBrand": "Regular 375 Foam Sleeping Pad",
+ "Name": "ALPS Mountaineering Regular 375 Foam Sleeping Pad",
+ "IsFamousBrand": false,
+ "Images": {
+ "PrimarySmall": "https://i.stpost.com/alps-mountaineering-regular-375-foam-sleeping-pad-in-green~p~665jr_01~80.jpg",
+ "PrimaryMedium": "https://i.stpost.com/alps-mountaineering-regular-375-foam-sleeping-pad-in-green~p~665jr_01~160.jpg",
+ "PrimaryLarge": "https://i.stpost.com/alps-mountaineering-regular-375-foam-sleeping-pad-in-green~p~665jr_01~320.jpg",
+ "PrimaryExtraLarge": "https://i.stpost.com/alps-mountaineering-regular-375-foam-sleeping-pad-in-green~p~665jr_01~600.jpg",
+ "ExtraImages": null
+ },
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Green",
+ "ColorChipImageSrc": "https://s.stpost.com/eccstorefront/colorchip/665jr-01.jpg",
+ "ColorPreviewImageSrc": "https://i.stpost.com/alps-mountaineering-regular-375-foam-sleeping-pad-in-green~p~665jr_01~160.jpg"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . ALPS Mountaineering Regular 375 sleeping pad is a dense, textured foam mat that protects and insulates against cold, uneven surfaces.",
+ "SuggestedRetailPrice": 16.99,
+ "Brand": {
+ "Id": "1156",
+ "Url": "/api/1.0/brand/1156/",
+ "ProductsUrl": "/api/1.0/products/alps-mountaineering~b~1156/",
+ "LogoSrc": "https://i.stpost.com/alps-mountaineering-regular-375-foam-sleeping-pad~b~1156~160x100.jpg",
+ "Name": "ALPS Mountaineering"
+ },
+ "ListPrice": 12.99,
+ "FinalPrice": 12.99
+ }
+ ]
+}
diff --git a/src/json/tents.json b/src/json/tents.json
index 98029223..85f1a628 100644
--- a/src/json/tents.json
+++ b/src/json/tents.json
@@ -1,137 +1,137 @@
-[
- {
- "Id": "880RR",
- "NameWithoutBrand": "Ajax Tent - 3-Person, 3-Season",
- "Name": "Marmot Ajax Tent - 3-Person, 3-Season",
- "Image": "../images/tents/marmot-ajax-tent-3-person-3-season-in-pale-pumpkin-terracotta~p~880rr_01~320.jpg",
-
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Pale Pumpkin/Terracotta"
- }
- ],
- "DescriptionHtmlSimple": "Get out and enjoy nature with Marmot's Ajax tent, featuring a smart design with durable, waterproof construction and two doors for easy access.",
- "SuggestedRetailPrice": 300.0,
- "Brand": {
- "Id": "1308",
- "LogoSrc": "../images/logos/marmot-160x100.jpg",
- "Name": "Marmot"
- },
- "ListPrice": 199.99,
- "FinalPrice": 199.99
- },
- {
- "Id": "985RF",
- "NameWithoutBrand": "Talus Tent - 4-Person, 3-Season",
- "Name": "The North Face Talus Tent - 4-Person, 3-Season",
- "Image": "../images/tents/the-north-face-talus-tent-4-person-3-season-in-golden-oak-saffron-yellow~p~985rf_01~320.jpg",
-
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Golden Oak/Saffron Yellow"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Enjoy a fun night under stars with your favorite people in The North Face's Talus four-person tent, featuring durable construction with a roomy interior, an advanced DAC Featherlite NSL pole system and an easy to pitch design.",
- "SuggestedRetailPrice": 299.0,
- "Brand": {
- "Id": "1440",
- "Name": "The North Face"
- },
- "ListPrice": 199.99,
- "FinalPrice": 199.99
- },
- {
- "Id": "989CG",
- "NameWithoutBrand": "Talus Tent - 3-Person, 3-Season",
- "Name": "The North Face Talus Tent - 3-Person, 3-Season",
- "Image": "../images/tents/the-north-face-talus-tent-3-person-3-season-in-golden-oak-saffron-yellow~p~989cg_01~320.jpg",
-
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Golden Oak/Saffron Yellow"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Enjoy a fun night under stars with your favorite people in The North Face's Talus three-person tent, featuring durable construction with a roomy interior, an advanced DAC Featherlite NSL pole system and an easy to pitch design.",
- "SuggestedRetailPrice": 270.0,
- "Brand": {
- "Id": "1440",
- "Name": "The North Face"
- },
- "ListPrice": 179.99,
- "FinalPrice": 179.99
- },
- {
- "Id": "985PR",
- "NameWithoutBrand": "Alpine Guide Tent - 3-Person, 4-Season",
- "Name": "The North Face Alpine Guide Tent - 3-Person, 4-Season",
- "Image": "../images/tents/the-north-face-alpine-guide-tent-3-person-4-season-in-canary-yellow-high-rise-grey~p~985pr_01~320.jpg",
-
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Canary Yellow/High Rise Grey"
- }
- ],
- "DescriptionHtmlSimple": "Closeout . Be ready for any outdoor adventure in low elevations and high-alpine environments alike with the hybrid design of The North Face's Alpine Guide four-season tent. It is made from durable, waterproof nylon ripstop with an advanced DAC® Featherlite NSL pole system and an easy to pitch design.",
- "SuggestedRetailPrice": 489.0,
- "Brand": {
- "Id": "1440",
- "Name": "The North Face"
- },
- "ListPrice": 349.99,
- "FinalPrice": 349.99
- },
- {
- "Id": "880RT",
- "NameWithoutBrand": "Ajax Tent - 2-Person, 3-Season",
- "Name": "Marmot Ajax Tent - 2-Person, 3-Season",
- "Image": "../images/tents/marmot-ajax-tent-2-person-3-season-in-pale-pumpkin-terracotta~p~880rt_01~320.jpg",
-
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Pale Pumpkin/Terracotta"
- }
- ],
- "DescriptionHtmlSimple": "Excess . Get out and enjoy nature with Marmot's Ajax tent, featuring a smart design with durable, waterproof construction and two doors for easy access.",
- "SuggestedRetailPrice": 275.0,
- "Brand": {
- "Id": "1308",
- "Name": "Marmot"
- },
- "ListPrice": 179.99,
- "FinalPrice": 179.99
- },
-
- {
- "Id": "344YJ",
- "NameWithoutBrand": "Rimrock Tent - 2-Person, 3-Season",
- "Name": "Cedar Ridge Rimrock Tent - 2-Person, 3-Season",
- "IsFamousBrand": false,
- "Image": "../images/tents/cedar-ridge-rimrock-tent-2-person-3-season-in-rust-clay~p~344yj_01~320.jpg",
-
- "SizesAvailable": {},
- "Colors": [
- {
- "ColorCode": "01",
- "ColorName": "Rust/Clay"
- }
- ],
- "DescriptionHtmlSimple": "Closeouts . Lightweight and ready for adventure, this Cedar Ridge Rimrock tent boasts a weather-ready design that includes a tub-style floor and factory-sealed rain fly .",
- "SuggestedRetailPrice": 89.99,
- "Brand": {
- "Id": "35027",
- "Name": "Cedar Ridge"
- },
- "ListPrice": 69.99,
- "FinalPrice": 69.99
- }
-]
+[
+ {
+ "Id": "880RR",
+ "NameWithoutBrand": "Ajax Tent - 3-Person, 3-Season",
+ "Name": "Marmot Ajax Tent - 3-Person, 3-Season",
+ "Image": "../images/tents/marmot-ajax-tent-3-person-3-season-in-pale-pumpkin-terracotta~p~880rr_01~320.jpg",
+
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Pale Pumpkin/Terracotta"
+ }
+ ],
+ "DescriptionHtmlSimple": "Get out and enjoy nature with Marmot's Ajax tent, featuring a smart design with durable, waterproof construction and two doors for easy access.",
+ "SuggestedRetailPrice": 300.0,
+ "Brand": {
+ "Id": "1308",
+ "LogoSrc": "../images/logos/marmot-160x100.jpg",
+ "Name": "Marmot"
+ },
+ "ListPrice": 199.99,
+ "FinalPrice": 199.99
+ },
+ {
+ "Id": "985RF",
+ "NameWithoutBrand": "Talus Tent - 4-Person, 3-Season",
+ "Name": "The North Face Talus Tent - 4-Person, 3-Season",
+ "Image": "../images/tents/the-north-face-talus-tent-4-person-3-season-in-golden-oak-saffron-yellow~p~985rf_01~320.jpg",
+
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Golden Oak/Saffron Yellow"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Enjoy a fun night under stars with your favorite people in The North Face's Talus four-person tent, featuring durable construction with a roomy interior, an advanced DAC Featherlite NSL pole system and an easy to pitch design.",
+ "SuggestedRetailPrice": 299.0,
+ "Brand": {
+ "Id": "1440",
+ "Name": "The North Face"
+ },
+ "ListPrice": 199.99,
+ "FinalPrice": 199.99
+ },
+ {
+ "Id": "989CG",
+ "NameWithoutBrand": "Talus Tent - 3-Person, 3-Season",
+ "Name": "The North Face Talus Tent - 3-Person, 3-Season",
+ "Image": "../images/tents/the-north-face-talus-tent-3-person-3-season-in-golden-oak-saffron-yellow~p~989cg_01~320.jpg",
+
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Golden Oak/Saffron Yellow"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Enjoy a fun night under stars with your favorite people in The North Face's Talus three-person tent, featuring durable construction with a roomy interior, an advanced DAC Featherlite NSL pole system and an easy to pitch design.",
+ "SuggestedRetailPrice": 270.0,
+ "Brand": {
+ "Id": "1440",
+ "Name": "The North Face"
+ },
+ "ListPrice": 179.99,
+ "FinalPrice": 179.99
+ },
+ {
+ "Id": "985PR",
+ "NameWithoutBrand": "Alpine Guide Tent - 3-Person, 4-Season",
+ "Name": "The North Face Alpine Guide Tent - 3-Person, 4-Season",
+ "Image": "../images/tents/the-north-face-alpine-guide-tent-3-person-4-season-in-canary-yellow-high-rise-grey~p~985pr_01~320.jpg",
+
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Canary Yellow/High Rise Grey"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeout . Be ready for any outdoor adventure in low elevations and high-alpine environments alike with the hybrid design of The North Face's Alpine Guide four-season tent. It is made from durable, waterproof nylon ripstop with an advanced DAC® Featherlite NSL pole system and an easy to pitch design.",
+ "SuggestedRetailPrice": 489.0,
+ "Brand": {
+ "Id": "1440",
+ "Name": "The North Face"
+ },
+ "ListPrice": 349.99,
+ "FinalPrice": 349.99
+ },
+ {
+ "Id": "880RT",
+ "NameWithoutBrand": "Ajax Tent - 2-Person, 3-Season",
+ "Name": "Marmot Ajax Tent - 2-Person, 3-Season",
+ "Image": "../images/tents/marmot-ajax-tent-2-person-3-season-in-pale-pumpkin-terracotta~p~880rt_01~320.jpg",
+
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Pale Pumpkin/Terracotta"
+ }
+ ],
+ "DescriptionHtmlSimple": "Excess . Get out and enjoy nature with Marmot's Ajax tent, featuring a smart design with durable, waterproof construction and two doors for easy access.",
+ "SuggestedRetailPrice": 275.0,
+ "Brand": {
+ "Id": "1308",
+ "Name": "Marmot"
+ },
+ "ListPrice": 179.99,
+ "FinalPrice": 179.99
+ },
+
+ {
+ "Id": "344YJ",
+ "NameWithoutBrand": "Rimrock Tent - 2-Person, 3-Season",
+ "Name": "Cedar Ridge Rimrock Tent - 2-Person, 3-Season",
+ "IsFamousBrand": false,
+ "Image": "../images/tents/cedar-ridge-rimrock-tent-2-person-3-season-in-rust-clay~p~344yj_01~320.jpg",
+
+ "SizesAvailable": {},
+ "Colors": [
+ {
+ "ColorCode": "01",
+ "ColorName": "Rust/Clay"
+ }
+ ],
+ "DescriptionHtmlSimple": "Closeouts . Lightweight and ready for adventure, this Cedar Ridge Rimrock tent boasts a weather-ready design that includes a tub-style floor and factory-sealed rain fly .",
+ "SuggestedRetailPrice": 89.99,
+ "Brand": {
+ "Id": "35027",
+ "Name": "Cedar Ridge"
+ },
+ "ListPrice": 69.99,
+ "FinalPrice": 69.99
+ }
+]
diff --git a/src/product-listings/index.html b/src/product-listings/index.html
new file mode 100644
index 00000000..af5a7a39
--- /dev/null
+++ b/src/product-listings/index.html
@@ -0,0 +1,33 @@
+
+
+
+
+
+ Sleep Outside | Product Listing
+
+
+
+
+
+
+
+
+ $
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/product.listing/product-listing.html b/src/product.listing/product-listing.html
new file mode 100644
index 00000000..e69de29b
diff --git a/src/product_pages/cedar-ridge-rimrock-2.html b/src/product_pages/cedar-ridge-rimrock-2.html
index c17b4dd5..90e42784 100644
--- a/src/product_pages/cedar-ridge-rimrock-2.html
+++ b/src/product_pages/cedar-ridge-rimrock-2.html
@@ -1,68 +1,68 @@
-
-
-
-
-
- Sleep Outside | Cedar Ridge Rimrock 2-person tent
-
-
-
-
-
-
-
- Cedar Ridge
- Rimrock Tent - 2-Person, 3-Season
-
-
- $69.99
- Rust/Clay
-
- Lightweight and ready for adventure, this Cedar Ridge Rimrock tent
- boasts a weather-ready design that includes a tub-style floor and
- factory-sealed rain fly
-
-
- Add to Cart
-
-
-
-
-
-
+
+
+
+
+
+ Sleep Outside | Cedar Ridge Rimrock 2-person tent
+
+
+
+
+
+
+
+ Cedar Ridge
+ Rimrock Tent - 2-Person, 3-Season
+
+
+ $69.99
+ Rust/Clay
+
+ Lightweight and ready for adventure, this Cedar Ridge Rimrock tent
+ boasts a weather-ready design that includes a tub-style floor and
+ factory-sealed rain fly
+
+
+ Add to Cart
+
+
+
+
+
+
diff --git a/src/product_pages/marmot-ajax-3.html b/src/product_pages/marmot-ajax-3.html
index 41851779..4713a6b0 100644
--- a/src/product_pages/marmot-ajax-3.html
+++ b/src/product_pages/marmot-ajax-3.html
@@ -1,68 +1,68 @@
-
-
-
-
-
- Sleep Outside | Marmot Ajax 3 person tent
-
-
-
-
-
-
-
- Marmot
- Ajax Tent - 3-Person, 3-Season
-
-
- $199.99
- Pale Pumpkin/Terracotta
-
- Get out and enjoy nature with Marmot's Ajax tent, featuring a
- smart design with durable, waterproof construction and two doors for
- easy access.
-
-
- Add to Cart
-
-
-
-
-
-
+
+
+
+
+
+ Sleep Outside | Marmot Ajax 3 person tent
+
+
+
+
+
+
+
+ Marmot
+ Ajax Tent - 3-Person, 3-Season
+
+
+ $199.99
+ Pale Pumpkin/Terracotta
+
+ Get out and enjoy nature with Marmot's Ajax tent, featuring a
+ smart design with durable, waterproof construction and two doors for
+ easy access.
+
+
+ Add to Cart
+
+
+
+
+
+
diff --git a/src/product_pages/northface-alpine-3.html b/src/product_pages/northface-alpine-3.html
index de7c45ac..22c017ba 100644
--- a/src/product_pages/northface-alpine-3.html
+++ b/src/product_pages/northface-alpine-3.html
@@ -1,69 +1,69 @@
-
-
-
-
-
- Sleep Outside | North Face Alpine Guide 3-person tent
-
-
-
-
-
-
-
- The North Face
- Alpine Guide Tent - 3-Person, 4-Season
-
-
- $349.99
- Canary Yellow/High Rise Grey
-
- Be ready for any outdoor adventure in low elevations and high-alpine
- environments alike with the hybrid design of The North Face's
- Alpine Guide four-season tent. It is made from durable, waterproof
- Featherlite NSL pole system and an easy to pitch design.
-
-
- Add to Cart
-
-
-
-
-
-
+
+
+
+
+
+ Sleep Outside | North Face Alpine Guide 3-person tent
+
+
+
+
+
+
+
+ The North Face
+ Alpine Guide Tent - 3-Person, 4-Season
+
+
+ $349.99
+ Canary Yellow/High Rise Grey
+
+ Be ready for any outdoor adventure in low elevations and high-alpine
+ environments alike with the hybrid design of The North Face's
+ Alpine Guide four-season tent. It is made from durable, waterproof
+ Featherlite NSL pole system and an easy to pitch design.
+
+
+ Add to Cart
+
+
+
+
+
+
diff --git a/src/product_pages/northface-talus-4.html b/src/product_pages/northface-talus-4.html
index 2ea12a1d..5cc0bea7 100644
--- a/src/product_pages/northface-talus-4.html
+++ b/src/product_pages/northface-talus-4.html
@@ -1,69 +1,69 @@
-
-
-
-
-
- Sleep Outside | North Face Talus 4-person tent
-
-
-
-
-
-
-
- The North Face
- Talus Tent - 4-Person, 3-Season
-
-
- $199.99
- Golden Oak/Saffron Yellow
-
- Enjoy a fun night under stars with your favorite people in The North
- Face's Talus four-person tent, featuring durable construction with
- a roomy interior, an advanced DAC Featherlite NSL pole system and an
- easy to pitch design.
-
-
- Add to Cart
-
-
-
-
-
-
+
+
+
+
+
+ Sleep Outside | North Face Talus 4-person tent
+
+
+
+
+
+
+
+ The North Face
+ Talus Tent - 4-Person, 3-Season
+
+
+ $199.99
+ Golden Oak/Saffron Yellow
+
+ Enjoy a fun night under stars with your favorite people in The North
+ Face's Talus four-person tent, featuring durable construction with
+ a roomy interior, an advanced DAC Featherlite NSL pole system and an
+ easy to pitch design.
+
+
+ Add to Cart
+
+
+
+
+
+
diff --git a/team.txt b/team.txt
new file mode 100644
index 00000000..c90438c2
--- /dev/null
+++ b/team.txt
@@ -0,0 +1,2 @@
+Cailynn Bambas
+Emma Amos